Math

Round

Return a rounded number.

Expression:

ROUND(value: float)

Return:

roundedValue: float

Example of usage:

ROUND(1.45)

Return value:
1

Floor

Returns the rounded-down number.

Expression:

FLOOR(value: float)

Return:

roundedValue: float

Example of usage:

Ceil

Returns the rounded-up number.

Expression:

FLOOR(value: float)

Return:

roundedValue: float

Example of usage:

To Fixed

Returns the number added to specified decimals.

Expression:

TO_FIXED(value: float, decimals: integer)

Return:

roundedValue: float

Example of usage:

Min

Returns a minimal numeric value from a series.

Expression:

MIN(value: array)

Return:

minimalValue: float

Example of usage:

Max

Returns a maximal numeric value from a series.

Expression:

MAX(value: array)

Return:

maximalValue: float

Example of usage:

Format Number

Returns a formatted number with specified decimal places, delimiter, and decimal point.

Expression:

FORMAT_NUMBER(number: float, decimals: integer, delimiter: string, decimalPoint: string)

Return:

formattedNumber: string

Example of usage:

Last updated

Was this helpful?