See the supported connectors for Application Integration.

MOD function

MOD function

Function Name Description Usage Input parameter Return value
MOD Divides two values and returns the remainder of the division operation. MOD(value) Value of the divisor. Remainder of the division operation.

Supported data type

The MOD function supports the following data types:

  • Double
  • Integer

Example: Find the remainder of a division operation

Sample data: $var1$ = 90

Usage: $var1$.MOD(3)

Divide var1 by 3.

Output: 0

Recommendation