Explore more
Functions

Math functions

21min

Use a math function to apply mathematical operations to data. For example, math functions let you get an average of an array, round a value up or down, or change the format of a number (1 000 000 to 1,000,000 or 1.000.000). Below is a list of supported math functions and a brief description of each one.

abs

abs (number)

Returns the absolute value of an integer.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

average

average ([array of values]) average(value1; [value2], ...)

Returns the average value of the numeric values in a specific array, or the average value of numerical values entered individually.

ceil

ceil (number)

Returns the smallest integer greater than or equal to a specified number.

Text
ļ»æ
Text
ļ»æ

floor

floor (number)

Returns the largest integer less than or equal to a specified number.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

formatNumber

formatNumber (number; decimalPOINTS; [decimalSeparator]; [thousandsSeparator])

Returns a number in the requested format. Decimal point is `,` by default, Thousands separator is `.` by default.

Text
ļ»æ

max

maxĀ ([array of values]), max(value1;value2; ...)

Returns the largest number in a specified array, or the largest number among numbers entered individually.

median

median ([array of values])

Returns the median of the values in a specified array, or the median of numbers entered individually.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

min

minĀ ([array of values]), min(value1;value2; ...)

Returns the smallest number in a specified array, or the smallest number among numbers entered individually.

parseNumber

parseNumberĀ (number; decimal separator)

Parses a string with a number and returns the number.

Example: parseNumber( 1 756,456 ; , )

round

round (number)

Rounds a numeric value to the nearest integer.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

stdevP

stdevP ([array of values])

Returns the standard deviation of a specified array of population values, or the standard deviation of numbers entered individually.

Text
ļ»æ
Text
ļ»æ

stdevS

stdevS ([array of values])

Returns the standard deviation of a specified array of sample values, or the standard deviation of numbers entered individually.

Text
ļ»æ
Text
ļ»æ

sum

sumĀ ([array of values]), sum(value1;value2; ...)

Returns the sum of the values in a specified array, or the sum of numbers entered individually.

trunc

trunc (number)

Truncates a number to an integer by removing the fractional part of the number.

Text
ļ»æ
Text
ļ»æ
Text
ļ»æ
Text
ļ»æ

ļ»æ