bpy
bpy

Reputation: 1180

How can I calculate mod 97 in ms-access 2007 VBA

I have this dividend 3298 that I need to return 0.00 when divided by 97

Right now, I'm doing this Me.mod_97_txt = 3298 / 97 but this is returning 34

Upvotes: 0

Views: 335

Answers (1)

RobertBaron
RobertBaron

Reputation: 2854

Try the modulo operator, that is, 3298 Mod 97.

Upvotes: 2

Related Questions