Floor

Floor(<value>)

The function returns the passed value rounded to the nearest previous integer.

Parameters

valueThe value on which the operation will be performed.

Related

Ceil, Round

Examples

MsgBox(Floor(1.77))   # --> 1
MsgBox(Floor(-5.123)) # --> -6