RoundUp Function
Description:
Round a value up (away from zero) to a specified number of decimal places.
Returns:
Number
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Number | The number to be rounded. |
2 | Whole Number | The decimal precision. |
Examples:
When using functions inside a field, remember the field brackets:
{RoundUp(VariableName)}
Expression | Result |
|---|---|
RoundUp( 6.005, 3 ) | 6.005 |
RoundUp( -6.005, 2 ) | -6.01 |
RoundUp( -6.005, 1 ) | -6.1 |