HOW TO ROUND UP INTEGER VALUES TO NEAREST TENS EXAMPLE 376 TO 380

V

v k abbey

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\)

I wouldn't call 214 to 210 rounding "up"; however, I think what you want is
this...

=ROUND(A1,-1)

Rick
 
B

Bernard Liengme

Dear Abbey:

=ROUND(A1,-1) for tens
=ROUND(A1,-2) for hundreds,
etc
best wishes
 
B

Beege

v said:
how to round up integer values or real numbers to nearest tens e.g 214 to
210, 375 t0 380, 576 to 580 etc.

If you just want to change the last digit to zero, then =INT(A1/10)*10
might work, otherwise, I'd go with the previous responses.

Beege
 
A

Andereida

=ROUNDUP(A1/10,0)*10

where A1 is the cell containing the integer you wish to operate on.

HTH
 
Top