Floor

Syntax

Floor(Expression)

Description

The expression rounded toward negative infinity. Use Floor to obtain the highest integer less than or equal to X. Note: Floor is not the same as the Int function

Example

Floor(-2.8) = -3
Floor(2.8) = 2
Floor(1.5) = 1
Floor(-1.5) = -2