Actually, Dwight brought up a point, although he incorrectly said my version was correct, which it is NOT. When I gave the answer earlier, I did not consider whole numbers, which of course should NOT be rounded up given your example (for instance, 1.0 should NOT round up to 2, etc.) Sometimes simplicity is plain wrong, and I am guilty this time around.
Therefore, just use the Iif statement as follows:
Iif(Int(MyNum)=MyNum, MyNum, Int(MyNum) +1)
This will ensure whole numbers like 1.0 stay the same, while 1.1 get rounded up to 2.
Thanks Dwight.