In all rounding systems I am aware of, 6.32 would be rounded down to 6. What
basis are you wanting to use to detect whether or not a number should round
up? Do you want all displayed numbers to be odd numbers? If that's the case
then you would have to use something like this in a query:
Iif (Int(YourNumber) Mod 2 = 0, Int(YourNumber) + 1, Int(YourNumber))