Floor Function
Description:
Round a number down (towards zero) to the nearest multiple of a whole number.
Returns:
Whole Number
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Number | The number to be rounded. |
2 | Whole Number | The significant whole number. |
Examples:
When using functions inside a field, remember the field brackets:
{Floor(VariableName)}
Expression | Result |
|---|---|
Floor( 6.001, 1 ) | 6 |
Floor( 6.001, 2 ) | 6 |
Floor( -6.001, 5 ) | -5 |