{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Remainder
Returns the remainder of an integer division of numerator by denominator. This is the equivalent to a modulo division.
Usage:
Remainder( numerator, denominator )
Parameters:
numerator | A (decimal) number. | |
---|---|---|
denominator | The divisor. |
Returns:
The numerator is divided by the denominator and the remainder of the division is returned.
Examples:
remainder( 3.49363739, 5) // Result: 3.49 remainder( 13, 10) // Result: 3, because 13=1*10+3 remainder({field}, 2) // Result: each field value mod 2.