Hi,
I have a case where I need to divide two numbers and round up to nearest integer and store the result in a calculated field. This is commonly known as a "ceiling" function.
| Example | Division | Round | Floor | Ceiling | |
|---|---|---|---|---|---|
| 100 / 10 | 10 | 10 | 10 | 10 | |
| 18 / 10 | 1.8 | 2 | 1 | 2 | |
| 12 / 10 | 1.2 | 1 | 1 | 2 | |
| 3 / 10 | 0.3 | 0 | 0 | 1 |
I can only seem to find a "round" function. Neither the "Floor" og the "Ceiling" is available as far as I can see.
Any ideas on how to overcome this?
Regards
Leif





