Rounding to Nearest 250

S

Scott G

I am want to round entries in a spreadsheet to the nearest 250. For
example, 510 would be rounded to 500; 3,810 would be rounded to 3,750,
etcetera.

Do I use the Rounding function or a series of IF statements?

Thank you for your help!!!

Scott
 
G

Guest

You can use the MROUND() function. It is part of the Analysis ToolPak, so
you'll need to make sure that is installed. (Tools-->Add-Ins...-->Check
"Analysis ToolPak"-->OK)

=MROUND(A1,250)

HTH,
Elkar
 
H

Harlan Grove

Scott G wrote...
I am want to round entries in a spreadsheet to the nearest 250. For
example, 510 would be rounded to 500; 3,810 would be rounded to 3,750,
etcetera.

Without requiring the ATP, you could use

=ROUND(x/250,0)*250
 
S

Scott G

I am want to round entries in a spreadsheet to the nearest 250. For
example, 510 would be rounded to 500; 3,810 would be rounded to 3,750,
etcetera.

Do I use the Rounding function or a series of IF statements?

Thank you for your help!!!

Scott

Is there a way to round UP to the nearest 250 without using an IF
statement?

Thanks Again,
Scott
 
S

Scott G

Is there a way to round UP to the nearest 250 without using an IF
statement?

Thanks Again,
Scott
I found my own answer by using ROUNDUP. This forumla seems to work:

=250*ROUNDUP(A2/250,0)

Thanks for your help!
 

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