Rounding numbers

G

gr

Hello, does someone knows how I can round a number always
to the upper value?

example:
I have I want
1.23 2
1.5 2
1.8 2
0.1 1
3.76 4

Thx!
 
A

Allen Browne

Assuming the numbers are all positive, you could use the fact that Int()
always rounds downwards:
-Int(-[MyField])
 
Top