Returns the remainder of an integer division of numerator by denominator. This is the equivalent to a modulo division.
Remainder( numerator, denominator )
| numerator | A (decimal) number. | |
|---|---|---|
| denominator | The divisor. |
The numerator is divided by the denominator and the remainder of the division is returned.
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.