C
carlo
Hi All
I have a query in which I would like to round a calculation always up:
1 = 1
1.00000000000000000000000000000001 = 2
1.5 = 2
1.9999 = 2
2 = 2
I could do : int(x-0.000000000001) + 1
but I can't believe, that this is the best, or the only possibility.
how would you do that?
Thanks for your help, appreciate it
Carlo
I have a query in which I would like to round a calculation always up:
1 = 1
1.00000000000000000000000000000001 = 2
1.5 = 2
1.9999 = 2
2 = 2
I could do : int(x-0.000000000001) + 1
but I can't believe, that this is the best, or the only possibility.
how would you do that?
Thanks for your help, appreciate it
Carlo