Rounding in Excel

  • Thread starter Thread starter trichey
  • Start date Start date
T

trichey

I am trying to round a cell either up to the nearest 500 or down to the
nearest 500...any suggestions. My current formula is =ROUNDUP(A2*1.3,500).
Help?
 
Try

=MAX(A1,mround(A1,500))

The max bit would make 0 - 249 sray as that number but if you want these to
be zero then use

=mround(A1,500)

If you get a #name error then
Tools|Addins
Check the analysis toolpack

Mike
 

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

Similar Threads


Back
Top