G Guest Oct 1, 2004 #1 In excel is there a way in formula to set one cell to give the total rounded to the nearest tens? Total is $338 but I want $340
In excel is there a way in formula to set one cell to give the total rounded to the nearest tens? Total is $338 but I want $340
J JasperBlaas Oct 1, 2004 #2 I can only come up with dividing it by 10 first, then rounding it an then multiplying it again: =ROUND(338/10;0)*10 Would do the trick
I can only come up with dividing it by 10 first, then rounding it an then multiplying it again: =ROUND(338/10;0)*10 Would do the trick
B Bob Phillips Oct 1, 2004 #4 =ROUND(A1,-1) Also see http://www.xldynamic.com/source/xld.Rounding.html Rounding In Excel