Rounding

  • Thread starter Thread starter Scott W
  • Start date Start date
S

Scott W

How can I format the result of a simple formula to give the result rounded
to the nearest 10? Example, 1178 displayed as 1180 (no decimals)
 
=ROUND(A1,-1)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
=ROUND(A1,-1)

is one way.

Scott said:
How can I format the result of a simple formula to give the result rounded
to the nearest 10? Example, 1178 displayed as 1180 (no decimals)
 
Scott said:
How can I format the result of a simple formula to give the result
rounded
to the nearest 10? Example, 1178 displayed as 1180 (no decimals)
Hi Scott,

you didn't say whether it was rounding up or down, try these

=ROUNDUP(A1,-1)

=ROUND(A1,-1)

=ROUNDDOWN(A1,-1)

oldchippy :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top