K
KB
How do I round numbers to get to the nearest 0.09
(4.17=4.19 or 4.12=4.09)
(4.17=4.19 or 4.12=4.09)
How do I round numbers to get to the nearest 0.09
(4.17=4.19 or 4.12=4.09)
I think this will do what you want...
=ROUND(A1,1)-0.01
Am I missing something?
A1: 3.541
I would have thought:
=ROUND(A1+0.01,1)-0.01
No, you are not missing anything... adding the 0.01 to the value inside the
ROUND function as you show in your post is the correct way to do this.