Archive

MROUND

Returns a number rounded to the desired multiple.

LOG10

Returns the base-10 logarithm of a number.

LOG

Returns the logarithm of a number to the base you specify.

LN

Returns the natural logarithm of a number. Natural logarithms are based on the constant e (2.71828182845904).

LCM

Returns the least common multiple of integers. The least common multiple is the smallest positive integer that is a multiple of all integer arguments number1, number2, and so on. Use LCM to add fractions with different denominators.

ISO.CEILING

Rounds a number up, to the nearest integer or to the nearest multiple of significance.

INT

Rounds a number down to the nearest integer.

GCD

Returns the greatest common divisor of two or more integers. The greatest common divisor is the largest integer that divides both number1 and number2 without a remainder.

FLOOR

Rounds a number down, toward zero, to the nearest multiple of significance.

FACT

Returns the factorial of a number, equal to the series 1*2*3*…* , ending in the given number.