Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 4 Current »



Function: roundUp()

Rounds a value up to a given number of decimal places.

Syntax

roundUp(listOfValues, decimalPlace)

ArgumentTypeDescription
listOfValuesArrayList of values to be assessed
decimalPlaceIntegerDecimal place precision to be used

Examples

Decimals

roundUp(in.value, 2)

Where in.value contains [12.343,12.345], roundUp() returns [12.35, 12.35]


Whole Numbers

roundUp(187, -1)

returns 190


roundUp(182, -1)

returns 190


roundUp(182, -2)

returns 200

See Also

  • No labels