ceiling()
Table of Contents
Examples
The following example rounds up the value in 'test' column with ceiling() and returns the result in a separate column.
| makeresults
| eval test = 5.5
| eval testCeil = ceiling(test)
The following example rounds up 5.1 with ceil() and returns 6 as the result.
| makeresults
| eval test = ceil(5.1)