This function returns the floor value. i.e. The greatest mathematical integer that is less than or equal to the given number.


floor(number) #Output: Number



Parser expressionDescription


%{floor(-1.3)}


This example returns:

-2


%{floor(0)}


This example returns:

0


%{floor(2.3)}


This example returns:

2



Parameters used in this function

ParameterInput (data type)Description
number

Any given number or numeric field code.



This function returns a



Use cases and examples



Short descriptionReturns the greatest mathematical integer that is less than or equal to the input number.
Output