Ceil
ceil
Returns the smallest integer greater than or equal to the input.
Spec
ceil(arg0) Parameters
arg0 - A numeric value. Return Value
The ceiling of arg0 as a double. Example
datatable(val:double)[2.3, -1.7]
| extend result = ceil(val) | val | result |
|---|---|
| 2.3 | 3 |
| -1.7 | -1 |