You can use the INT function or the \ integer division operator if your
numbers are always whole numbers (no decimal portion).
Int(12/5) and 12\5 will both return 2
HOWEVER, if your numbers can contain decimal portions then you need to be
aware that Int and integer division can return different results. For instance
?11.41\5.7 Returns 1
?11.41/5.7 returns 2.00175438596491
?Int(11.41/5.7) returns 2
John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County