Jul 17, 2008 #1 vamoose Programmer Oct 16, 2005 320 MX Using Access 2003 and if FourXSix = 10 using this equation: White4X6 = Int(FourXSix / 3) then White4X6 would = 3 I would like to round this number up to the next whole number as in 4. Any ideas please, thank you.
Using Access 2003 and if FourXSix = 10 using this equation: White4X6 = Int(FourXSix / 3) then White4X6 would = 3 I would like to round this number up to the next whole number as in 4. Any ideas please, thank you.
Jul 17, 2008 #2 Remou Technical User Sep 30, 2002 13,030 BE Perhaps: FourXSix =10 White4X6 = Iif(FourXSix/3>FourXSix\3,FourXSix\3+1,FourXSix \3) Upvote 0 Downvote