Edit

MOD ER function

The MOD function is available for Finance and Operations 10.0.49 and later.

The MOD function returns the remainder after a number is divided by another number. In other words, it returns the modulus of the specified numbers.

Syntax

MOD (dividend, divisor)

Arguments

dividend: Real or Integer

The dividend, or the number to be divided.

divisor: Real or Integer

The divisor, or the number by which dividend is divided.

Return values

Real or Integer

The resulting numeric value.

Example

MOD (5, 2) returns 1.

Example 2

MOD (6.6, 3.1) returns 0.4.

Additional resources

Mathematical functions