By using @Round command, can it always round up : example 6.2 -> 7 5.8 -> 6 0.1 -> 1 10.01 -> 11 eg> fieldone * 200 0.456 * 200 =91.2 (need to round up to 92) if 1.001 * 200 = 200.2 (display 200.2 instead of 200) how to do the comparison for these 2 examples.