Syntax
Ceiling(Expression)
Description
The expression rounded up toward positive infinity. Use Ceiling to obtain the lowest integer greater than or equal to X.
Example
Ceiling(-2.8) = -2 Ceiling(2.8) = 3 Ceiling(1.5) = 2 Ceiling(-1.5) = -1