Hi
I am trying to round all values with 2 decimal places to the nearest 0.33
So for example if the number is 5.29 it would need to say 5.33. If the number is 5.54 then it should be rounded to 5.66, but if the number is 5.93 then it should be rounded to 6 (and not 5.99).
The problem is that I cant figure out how to do that. If you have variable A and use round(A,1) it rounds to integer, if you use round(A,0.5) it rounds to nearest 0.5, but if you write round(A,0.33) you get some weird numbers.
Does anyone have any ideas of how to do that?
Cheers
Aleksej
I am trying to round all values with 2 decimal places to the nearest 0.33
So for example if the number is 5.29 it would need to say 5.33. If the number is 5.54 then it should be rounded to 5.66, but if the number is 5.93 then it should be rounded to 6 (and not 5.99).
The problem is that I cant figure out how to do that. If you have variable A and use round(A,1) it rounds to integer, if you use round(A,0.5) it rounds to nearest 0.5, but if you write round(A,0.33) you get some weird numbers.
Does anyone have any ideas of how to do that?
Cheers
Aleksej
Comment