G Guest Nov 16, 2004 #1 Is there a function that will round decimals to the nearest 10 e.g. if I had 62.675 I would want it to round to 63.
Is there a function that will round decimals to the nearest 10 e.g. if I had 62.675 I would want it to round to 63.
J JulieD Nov 16, 2004 #3 Hi Sho you might like to play with =ROUND(62.675,0) =ROUNDUP(62.675,0) which will both (in this case) return 63 and for completion sake have a look at =ROUNDDOWN(62.675,0) which will return 62 Cheers JulieD
Hi Sho you might like to play with =ROUND(62.675,0) =ROUNDUP(62.675,0) which will both (in this case) return 63 and for completion sake have a look at =ROUNDDOWN(62.675,0) which will return 62 Cheers JulieD
G Guest Nov 16, 2004 #5 I did find the Round functions but I also want to Round to the nearest 5 e.g. 281.326 should round to 381.35 302.320 should round to 302.30 4.675 should round to 4.70 Any ideas?
I did find the Round functions but I also want to Round to the nearest 5 e.g. 281.326 should round to 381.35 302.320 should round to 302.30 4.675 should round to 4.70 Any ideas?
J JulieD Nov 16, 2004 #6 Hi 302.320 should round to 302.30 4.675 should round to 4.70 Click to expand... use =ROUND(302.320,1) =ROUND(4.675,1) i'm not sure on how to do this on 281.326 should round to 381.35 Click to expand... Cheers JulieD
Hi 302.320 should round to 302.30 4.675 should round to 4.70 Click to expand... use =ROUND(302.320,1) =ROUND(4.675,1) i'm not sure on how to do this on 281.326 should round to 381.35 Click to expand... Cheers JulieD
R Ron Rosenfeld Nov 16, 2004 #7 I did find the Round functions but I also want to Round to the nearest 5 e.g. 281.326 should round to 381.35 302.320 should round to 302.30 4.675 should round to 4.70 Any ideas? Click to expand... According to your examples, you want to round to the nearest 0.05 (not the nearest 5). To round to the nearest 0.05, use the formula: =ROUND(A1/0.05,0)*0.05 To round to the nearest 5, use the formula: =ROUND(A1/5,0)*5 --ron
I did find the Round functions but I also want to Round to the nearest 5 e.g. 281.326 should round to 381.35 302.320 should round to 302.30 4.675 should round to 4.70 Any ideas? Click to expand... According to your examples, you want to round to the nearest 0.05 (not the nearest 5). To round to the nearest 0.05, use the formula: =ROUND(A1/0.05,0)*0.05 To round to the nearest 5, use the formula: =ROUND(A1/5,0)*5 --ron