There was an error while loading. Please reload this page.
The _CEIL function rounds a numeric value up to the next whole number or INTEGER value.
result = _CEIL(expression)
Displaying the rounding behavior of INT, CINT and FIX vs _CEIL.
PRINT INT(2.5), CINT(2.5), FIX(2.5), _CEIL(2.5) PRINT INT(-2.5), CINT(-2.5), FIX(-2.5), _CEIL(-2.5)
2 2 2 3 -3 -2 -2 -2
Navigation