Round To The Nearest Thousand or Million

R

Robert Nguyen

I'm working with large numbers. How can I make the result
round up or down to the nearest thousand or even million?
Any suggestion will be greatly appreciated.
 
P

Paul

Robert Nguyen said:
I'm working with large numbers. How can I make the result
round up or down to the nearest thousand or even million?
Any suggestion will be greatly appreciated.

=ROUND(A1,-3)
or
=ROUND(YourFormula,-3)
to round to thousand.

=ROUND(A1,-6)
or
=ROUND(YourFormula,-6)
to round to million.
 
R

Robert Nguyen

I'm testing out the Ceiling and Floor formulas and it's
working, but yours is much simpler. Thank you so much.
 

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