Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do you show a 100% increase from one year's sales to the next when year 1
is zero? The formula keeps showing the divided by zero error? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You couldn't multiply $0 by 100% and get the amount you're looking for.
Where I work....we report that increase as n.m. (not meaningful). If that's your company's convention, though, something like this may be what you're looking for: =IF(A1=0,100%,B1/A1) Does that help? *********** Regards, Ron "Karen" wrote: How do you show a 100% increase from one year's sales to the next when year 1 is zero? The formula keeps showing the divided by zero error? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Formula correction:
=IF(A1=0,100%,(B1-A1)/A1) *********** Regards, Ron "Ron Coderre" wrote: You couldn't multiply $0 by 100% and get the amount you're looking for. Where I work....we report that increase as n.m. (not meaningful). If that's your company's convention, though, something like this may be what you're looking for: =IF(A1=0,100%,B1/A1) Does that help? *********** Regards, Ron "Karen" wrote: How do you show a 100% increase from one year's sales to the next when year 1 is zero? The formula keeps showing the divided by zero error? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Karen,
What you are asking is mathematically impossible. When you divide any number by zero you get infinity, so Excel correctly shows "divide by zero". Look at it this way; If cell A1 contains 1 and B1 contains 5 then the increase is 500% If cell A1 contains 0.1 and B1 contains 5 then the increase is 5000% If cell A1 contains 0.01 and B1 contains 5 then the increase is 50000% The smaller the value in cell A1 the larger the answer. So by the time you get down to zero in cell A1, the increase is infinity! Cheers, Ken "Karen" wrote in message ... How do you show a 100% increase from one year's sales to the next when year 1 is zero? The formula keeps showing the divided by zero error? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
percentage increase | Excel Worksheet Functions | |||
Percentage increase in excel | Excel Discussion (Misc queries) | |||
Increase figures in cells by a percentage (on entire workbook) | Excel Worksheet Functions | |||
Percentage Calculation | Excel Worksheet Functions | |||
How to increase an entire collumn by a certain percentage? | Excel Discussion (Misc queries) |