Modulo Division

Recently, one of our Loadit users asked:

“Can you tell me how to do modulus division in Loadit Expressions?”

For the uninitiated, modulus division is the process of returning the remainder after dividing one number by another.
This technique is handy for a number of uses. For example, to flag alternate rows, you might do a modular division by 2.

The modulo operator in Loadit is simply “%”.

So, for example:

10 % 10 = 0 (i.e. 10 divided by 10 gives a remainder of zero)
11 % 10 = 1 (i.e. 11 divided by 10 gives a remainder of one)