Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Electronic reporting (ER) mathematical functions can be used to do many common mathematical calculations. This article provides a summary of these functions.
List of supported functions
| Function | Description |
|---|---|
| Abs | This function returns the absolute value (modulus) of the specified number as a Real value. In other words, it returns the number without its sign. |
| DIV | This function returns the integer division of two integers. The result is the quotient of the division of dividend by divisor, rounded down to the nearest integer. |
| MOD | This function returns the remainder after a number is divided by another number. In other words, it returns the modulus of the specified numbers. |
| Power | This function returns a Real value that represents the result of raising the specified positive number to the specified power. |
| Round | This function returns the specified number as a Real value after it has been rounded to the specified number of decimal places. |
| RoundDown | This function returns the specified number as a Real value after it has been rounded down to the specified number of decimal places. |
| RoundUp | This function returns the specified number as a Real value after it has been rounded up to the specified number of decimal places. |