Number and Math Functions

Modified on Fri, 18 Aug 2023

4 minutes read

This document is a draft version and subject to further review and revision. Please refrain from distributing or relying on its contents as final.

UI ElementDescription
absoluteReturn the absolute value of a number.
addAdd two numbers
avgReturn the average value of a numeric column.
ceilCalculate and return the ceil of number
countReturn the number of rows that matches a specified criterion.
divideDivide two numbers
floorCalculate and return the floor of number
maxCalculate and return the max of an array of elements
meanCalculate and return the mean of an array of elements
minCalculate and return the min of an array of elements
multiplyMultiply two numbers.
roundCompute number rounded to precision.
subtractSubtract two numbers
sumCompute the sum of the values
randomProduce a random number between the inclusive lower and upper bounds
toNumberConvert `value` to a number.
toSafeIntegerConvert `value` to a safe integer. A safe integer can be compared and represented correctly
percentReturn the percentage.

See Also

add