This function returns the remainder after division of the dividend by the divisor.

modulus(dividend, divisor) #Output: Number
The number divisor cannot be equal to 0.
Parser expressionDescription
%{modulus(4,2)}

This example returns:

0



%{modulus(3,2)}

This example returns:

1


Parameters used in this function

ParameterInput (data type)Description
dividend

Any given number or numeric field code.
divisor

Any given number other than 0 or numeric field code.

This function returns a


Use cases and examples

Short descriptionReturns the remainder after division of the dividend by the divisor.
Output