2
Let say A1's value is 0.34
If I use =ROUND(A1,2)
formula in excel, this will produce 0.34
too.
I know this is the right one.
What I want to do is to change 0.34
value to 0.35
2
Let say A1's value is 0.34
If I use =ROUND(A1,2)
formula in excel, this will produce 0.34
too.
I know this is the right one.
What I want to do is to change 0.34
value to 0.35
4
Microsoft Excel provides three functions for round numbers to the nearest multiple of 0.5:
4
Use =ROUND(A1*2,1)/2
or =MROUND(A1,.05)
. This lets you round in .05 increments.
Thanks but didn't work. I'm still getting 0.34
– Sabrina – 2019-06-15T08:21:16.023
interesting. Seems Mround only works for positive values. – Forward Ed – 2019-06-15T15:04:16.313
1If negatives involved, try instead =MROUND($A3, SIGN($A3) * 0.5) – BowlOfRed – 2019-06-15T16:54:59.630