V v k abbey Mar 22, 2008 #1 how to round up integer values or real numbers to nearest tens e.g 214 to 210, 375 t0 380, 576 to 580 etc.
how to round up integer values or real numbers to nearest tens e.g 214 to 210, 375 t0 380, 576 to 580 etc.
R Rick Rothstein \(MVP - VB\) Mar 22, 2008 #2 I wouldn't call 214 to 210 rounding "up"; however, I think what you want is this... =ROUND(A1,-1) Rick
I wouldn't call 214 to 210 rounding "up"; however, I think what you want is this... =ROUND(A1,-1) Rick
B Bernard Liengme Mar 22, 2008 #3 Dear Abbey: =ROUND(A1,-1) for tens =ROUND(A1,-2) for hundreds, etc best wishes
A Andereida Mar 22, 2008 #4 =ROUNDUP(A1/10,0)*10 where A1 is the cell containing the integer you wish to operate on. HTH