Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Call me crazy, but I have read every rounding question and answer and I
cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#2
![]() |
|||
|
|||
![]()
Hi Heather! I'd be happy to help you with rounding up to the nearest 500 in Excel.
One way to do this is by using the Code:
MROUND
Another way to do this is by using the Code:
ROUNDUP
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=ROUNDUP(A1,-2)
"Heather" wrote: Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=ROUNDUP(A1/500,0)*500 HTH, Elkar "Heather" wrote: Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes, I'll call you crazy!
=CEILING(A1,500) -- David Biddulph "Heather" wrote in message ... Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Teethless mama wrote:
=ROUNDUP(A1,-2) That rounds up to the nearest __100__, not nearest 500 except by coincidence. It works with the OP's example (525446). But roundup(525321,-2) is 525300, not 525500. That might, indeed, what the OP meant. But.... "Heather" wrote apparently: Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Are you sure that is what you really want? Be sure to test any solution offered with a variety of numbers. For example: =500*roundup(525446/500, 0) yields 525500, as you wish. But: =500*roundup(525501/500, 0) yields 526000. That is what "roundup to the nearest 500" means. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
wrote in message
ups.com... Teethless mama wrote: =ROUNDUP(A1,-2) That rounds up to the nearest __100__, not nearest 500 except by coincidence. It works with the OP's example (525446). But roundup(525321,-2) is 525300, not 525500. It actually gives 525400, but we know what you mean. :-) -- David Biddulph |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
maybe for both positive and negative rounded to 500.
=SIGN(A1)*CEILING(ABS(A1),500) "David Biddulph" wrote: Yes, I'll call you crazy! =CEILING(A1,500) -- David Biddulph "Heather" wrote in message ... Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You can do that without ABS.....
=CEILING(A1,SIGN(A1)*500) "dribler2" wrote: maybe for both positive and negative rounded to 500. =SIGN(A1)*CEILING(ABS(A1),500) "David Biddulph" wrote: Yes, I'll call you crazy! =CEILING(A1,500) -- David Biddulph "Heather" wrote in message ... Call me crazy, but I have read every rounding question and answer and I cannot get Excel to round up to the nearest 500. IE: 525446 needs to be 525500 Can anyone help! Heather |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
=ROUNDUP(A1*2,-3)/2 Regards, Bernd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rounding to the Nearest Eighth | Excel Discussion (Misc queries) | |||
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 |