Rounds away from zero to the next integer. Thus the magnitude of the result is always greater or equal to the input value.
RoundUp( x ) RoundUp( x, #places )
X | Number to be rounded. If the decimal part of x is not zero, the next integer that is farther away from zero is returned. |
---|---|
#places | Number of decimal places to that x will be rounded. |
Numeric value
roundUp (3.2) //4 roundUp (1.5) //2 roundUp (-7.7) //-8