Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the smallest integer greater than, or equal to, the specified numeric expression.
ceiling(
number)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
number | int, long, or real | ✔️ | The value to round up. |
The smallest integer greater than, or equal to, the specified numeric expression.
print c1 = ceiling(-1.1), c2 = ceiling(0), c3 = ceiling(0.9)
Output
c1 | c2 | c3 |
---|---|---|
-1 | 0 | 1 |