Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 "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. Do I use the Rounding function or a series of IF statements? Thank you for your help!!! Scott |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=250*ROUND(A1/250,0)
"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. Do I use the Rounding function or a series of IF statements? Thank you for your help!!! Scott |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Scott G wrote in
8.18: Thanks for the quick reply. I really appreciate it. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Scott G wrote in
8: 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 |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Scott G wrote in
8.18: Scott G wrote in 8: 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. 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! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What is the formula for rounding a dollar amount to the nearest ni | New Users to Excel | |||
rounding to nearest hundred dollar in Excel | New Users to Excel | |||
Rounding numbers to the nearest 5 or 0 | Excel Worksheet Functions | |||
Rounding up to the nearest nickel | Excel Discussion (Misc queries) | |||
Rounding to nearest integer | Excel Worksheet Functions |