Ceil

Ceil(<value>)

The function returns the passed value rounded up to the nearest next integer.

Parameters

valueThe value on which the operation will be performed.

Related

Floor, Round

Examples

MsgBox(Ceil(1.27))   # --> 2
MsgBox(Ceil(-5.123)) # --> -5