{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
RoundUp
Rounds away from zero to the next integer. Thus the magnitude of the result is always greater or equal to the input value.
Usage:
RoundUp( x ) RoundUp( x, #places )
Parameters:
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. |
Returns:
Numeric value
Examples:
roundUp (3.2) //4 roundUp (1.5) //2 roundUp (-7.7) //-8