đŸ”ĸ

Math & Trigonometry Functions

33 functions

Rounding, sums, products, and mathematical operations

ABS

ABS converts negative numbers to positive, leaving positive numbers unchanged.

ACOS

Returns the angle (in radians) whose cosine is the supplied number.

ASIN

Returns the angle (in radians) whose sine is the supplied number.

ATAN

Returns the angle (in radians) whose tangent is the supplied number.

ATAN2

Returns the angle in radians to a point given by its x and y coordinates.

CEILING

Rounds a number up to the nearest multiple of significance.

CEILING.MATH

Rounds up to a multiple of significance, with a mode for negative numbers.

COS

Returns the cosine of an angle given in radians.

DEGREES

Converts radians to degrees.

EXP

Returns e raised to a power.

FLOOR

Rounds a number down to the nearest multiple of significance.

FLOOR.MATH

Rounds down to a multiple of significance, with a mode for negative numbers.

INT

Rounds a number down to the nearest integer.

LN

Returns the natural (base-e) logarithm of a number.

LOG

Returns the logarithm of a number to a given base (default 10).

LOG10

Returns the base-10 logarithm of a number.

MOD

Returns the remainder after division, with the sign of the divisor.

MROUND

Rounds a number to the nearest multiple of a given value.

PI

Returns the constant ΀ (about 3.14159).

POWER

POWER calculates number^power, raising a base number to an exponent.

PRODUCT

Multiplies together all supplied numbers.

RADIANS

Converts degrees to radians.

ROUND

ROUND rounds numbers to a given number of decimal places, following standard rounding rules.

ROUNDDOWN

ROUNDDOWN always rounds numbers down, never up, to the specified decimal places.

ROUNDUP

ROUNDUP always rounds numbers up, never down, to the specified decimal places.

SIGN

Returns 1, 0, or -1 indicating a number's sign.

SIN

Returns the sine of an angle given in radians.

SQRT

SQRT calculates the square root of a number.

SUMIF

SUMIF adds values that match a condition. Give it a range to check, a condition to test, and a range of numbers to sum — it only adds the ones that pass the test.

SUMIFS

Adds numbers that meet all of the specified conditions.

SUMPRODUCT

Sums the products of corresponding array elements; great for conditional calculations.

TAN

Returns the tangent of an angle given in radians.

TRUNC

Truncates a number to an integer or set number of digits (no rounding).