Skip to content

Numeric Functions

NameDescription
number_1 + number_2Addition.
number_1 - number_2Subtraction.
number_1 * number_2Multiplication.
number_1 / number_2Division.
number_1 ^ number_2Exponent.
ADD(number_1, number_2)Same as +.
ROUND(value, places)Round to a certain number of decimal places.
ROUNDUP(value, places)Round up to a certain number of decimal places.
ROUNDDOWN(value, places)Round down to a certain number of decimal places.

Details

number_1 + number_2

Addition.

ExampleOutput
=1 + 12
=2 + 35

number_1 - number_2

Subtraction.

ExampleOutput
=5 - 23
=100 - 2575

number_1 * number_2

Multiplication.

ExampleOutput
=5 * 210
=100 * 252500

number_1 / number_2

Division.

ExampleOutput
=10 / 25
=100 / 254

number_1 ^ number_2

Exponent.

ExampleOutput
=2 ^ 24
=10 ^ 2100

ADD(number_1, number_2)

Add two numbers.

ExampleOutput
=ADD(1, 1)2
=ADD(2, 3)5

ROUND(value, places)

Round to a certain number of decimal places.

Input ExampleOutput
=ROUND(10.563, 0)11
=ROUND(10.563, 2)10.56

ROUNDUP(value, places)

Round up to a certain number of decimal places.

ExampleOutput
=ROUNDUP(1.123, 0)2
=ROUNDUP(1.123, 2)1.13

ROUNDDOWN(value, places)

Round down to a certain number of decimal places.

ExampleOutput
=ROUNDDOWN(1.9, 0)1
=ROUNDDOWN(2.127, 2)2.12