B Bernard Liengme Nov 23, 2009 #3 With a bit of playing around I came up with =ROUND(A1,1) - 0.01 best wishes
R Ron Rosenfeld Nov 23, 2009 #5 How do I round numbers to get to the nearest 0.09 (4.17=4.19 or 4.12=4.09) Click to expand... =ROUND(A1+0.01,1)-0.01 --ron
How do I round numbers to get to the nearest 0.09 (4.17=4.19 or 4.12=4.09) Click to expand... =ROUND(A1+0.01,1)-0.01 --ron
R Ron Rosenfeld Nov 23, 2009 #6 I think this will do what you want... =ROUND(A1,1)-0.01 Click to expand... Am I missing something? A1: 3.541 I would have thought: =ROUND(A1+0.01,1)-0.01 --ron
I think this will do what you want... =ROUND(A1,1)-0.01 Click to expand... Am I missing something? A1: 3.541 I would have thought: =ROUND(A1+0.01,1)-0.01 --ron
R Rick Rothstein Nov 23, 2009 #7 I think this will do what you want... Am I missing something? A1: 3.541 I would have thought: =ROUND(A1+0.01,1)-0.01 Click to expand... 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.
I think this will do what you want... Am I missing something? A1: 3.541 I would have thought: =ROUND(A1+0.01,1)-0.01 Click to expand... 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.
R Ron Rosenfeld Nov 23, 2009 #8 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. Click to expand... Sometimes, in those hours between the start of cocktail time and dinner, I've been known to miss things --ron
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. Click to expand... Sometimes, in those hours between the start of cocktail time and dinner, I've been known to miss things --ron