Division Remainder

M

Mark

Is there a function to calculate the remainder of a
division?


e.g., 17 / 4 = 4 remainder 1

I want to use the 1.
 
N

Nikos Yannacopoulos

Mark,

Modulo function is built in Access. The syntax is
17 Mod 4
as per your example. Can be used in calculated fields in queries, calculated
controls on forms and in reports, in code, anywhere.

HTH,
Nikos
 
Top