CEILING
Rounds the given input up to the nearest integer.
Syntax
CEILING(X)
Arguments
X
Type: numeric
A numeric value.
Returns
Type: same as input
X rounded up to the nearest integer.
Examples
| X | Output |
|---|---|
| 0.13523523 | 1.0 |
| -1.1 | -1.0 |
| 1 | 1 |
| 1 + 1 | 2 |
| 0 | 0 |
| -1 | -1 |
| -1 - 5 | -6 |