I'm trying to set up Banker's rounding/Half to even. I found this formula from Barry Houdini
=ROUND(A2,0)-(MOD(ROUND(A2*10,0),20)=5)
Which works great, until there's a number with 4.45-4.49 in it.
34.44 rounds, correctly, to 34
34.45 rounds, incorrectly, to 33
Evaluating the formula shows that it's double rounding. A few steps in, I encounter the difference.
round(344.4,0) = 344
round(344.5,0) = 345
And this causes the MOD( result to change from 5 to 4. Which means it incorrectly subtracts 1 at the end.
Any suggestions on how to get passed that quirk? Thanks
Bookmarks