Excerpt | ||
---|---|---|
| ||
roundUp(listOfValues, decimalPlace) Rounds a value up to a given number of decimal places. |
Function: roundUp()
Rounds a value up to a given number of decimal places.
...
roundUp(in.value, 2)
Where in.value contains [12.343,12.345], roundUp() returns [12.35, 12.35]
...