This Function returns a <numeric>, which is the smallest following integer of the specified Value.
Parameters
Value <numeric> |
|
Value to get the smallest following integer from. |
|
|
Example 1
|
|
Example 2 |
|
Example 3 |
Ceiling(2.4)
Result = 3 |
|
Ceiling(2.6)
Result = 3 |
|
Ceiling(-2.4)
Result = -2 |
|
|
|
|
|
Example 4 |
|
Example 5 |
|
Example 6 |
Ceiling(-2.6)
Result = -2 |
|
Ceiling(2)
Result = 2 |
|
Ceiling(-2)
Result = -2 |
Updated: 3/21/2018 4:29 PM |