PDA

View Full Version : Integer division



Aero
05-09-2010, 11:59 AM
I'm wondering if there is a way to use integer division in VBA.

When i google for it, there's some pages who say it is possible to say :

24 \ 7

which would give : 3

However when i try to do this, i'm getting an error. So i'm wondering if it is even possible ? (excel 97)

mdmackillop
05-09-2010, 12:21 PM
Try

MsgBox 24 \ 7

Aero
05-09-2010, 12:27 PM
Thanks :)