Mod

This operator is used to divide two numbers and return only the remainder.

Syntax

result = number1 Mod number2

Parameters

result
Any numeric variable.
number1
Any numeric expression.
number2
Any numeric expression.

Remarks

The modulus, or remainder, operator divides number1 by number2, rounding floating-point numbers to integers. Mod returns only the remainder as result. The following code example shows that A, which is result, equals 5.

A = 19 Mod 6.7

If any expression is Null, result is also Null. An Empty expression is treated as 0.