Floor
Returns the closest integral value that is smaller than or equal to number
.
Returns Invalid expression
if the parameter is not a valid number.
This function uses 32-bit Integers, therefore the range of valid parameters is
-2147483648 and +2147483648
Syntax
Parameters
Name
Type
Required
Description
number
numeric
☑️
a numeric value.
Examples
Function call
Result
Floor(5)
5
Floor(5.999)
5
Floor(-123.89)
-124
Last updated
Was this helpful?