I currently have to set up a calculator for some easy calculations - however here’s where I become unstuck.
The normal laws of maths state that .5 you round up below .5 down. I need to change the threshold from .5 to .6.
The results of the calculations are worked out to 3 decimal places so:
A result of 0.556 needs to be rounded to 0.56
A result of 0.555 needs to be rounded to 0.55.
I have
=IF(A1-INT(A1)>=0.6,ROUNDUP(A1,3),ROUNDDOWN(A1,2))
However this is the same as rounddown(A1, 2) and is only rounding to the second decimal.
Any suggestions?
The normal laws of maths state that .5 you round up below .5 down. I need to change the threshold from .5 to .6.
The results of the calculations are worked out to 3 decimal places so:
A result of 0.556 needs to be rounded to 0.56
A result of 0.555 needs to be rounded to 0.55.
I have
=IF(A1-INT(A1)>=0.6,ROUNDUP(A1,3),ROUNDDOWN(A1,2))
However this is the same as rounddown(A1, 2) and is only rounding to the second decimal.
Any suggestions?