FLOOR
Syntax
FLOOR (numeric_expression)
Description
Rounds down to the largest integer that is less than or equal to the specified expression.
Arguments
numeric_expression | A number that can be converted to a Double64 number. |
Returns
A numeric value in Double64 format. A Double32 or Double64 data type represents a 32- or 64- double-byte floating-point number.
Examples
FLOOR ( 54.30 )
Returns: 54.00
FLOOR ( - 29.90 )
Returns: - 30.00
If MyEntity.Cost equals (32.50) then FLOOR (MyEntity.Cost)
Returns: 32