Reputation: 1180
I have this dividend 3298 that I need to return 0.00 when divided by 97
3298
0.00
97
Right now, I'm doing this Me.mod_97_txt = 3298 / 97 but this is returning 34
Me.mod_97_txt = 3298 / 97
34
Upvotes: 0
Views: 335
Reputation: 2854
Try the modulo operator, that is, 3298 Mod 97.
Upvotes: 2