How to Round Whole Numbers?

B

blank

What is the formula for rounding whole numbers down (ie not decimals to
whole numbers)?
I want to round numbers like 14427 to 14420. The numbers are in a formula
such as:
=SUM(C6:C22)*.08 and I want to round the result to the nearest 10.
Thanks for any help.
 
M

Mangesh

Nearest 10. use:
=ROUND((SUM(C6:C22)*.08)/10,0)*10

Your example:
=INT((SUM(C6:C22)*.08)/10)*10


- Mangesh
 

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

Top