Correct Formula to show YoY % Growth when Prior Year figure was zero

Sundance_Kid

Board Regular
Joined
Sep 2, 2017
Messages
129
Office Version
  1. 365
Platform
  1. Windows
Hi,

What is the correct, one stop, formula to calculate the % growth between two numbers?

I am trying to calculate YoY % growth, however if in 2022 the amount was zero but in 2023 the amount was 10,000, surely the growth is 100%.

See the attached image and formula I am using but for the month February it is giving a #DIV/0! error. While, I know I could add in iferror and get it to put in 0 or something instead if an error, surely the figure should be 100%? or am I mistaken?

Thank you
 

Attachments

  • Excel % Calculation Query.PNG
    Excel % Calculation Query.PNG
    12.1 KB · Views: 25

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
I am trying to calculate YoY % growth, however if in 2022 the amount was zero but in 2023 the amount was 10,000, surely the growth is 100%.
Mathematically speaking, no, that is not true.
100% growth would be if you doubled, i.e. went from 25 to 50.

If you start from 0, you cannot really calculate percent growth (mathematically speaking, it would be how many times do you have to multiply 0 to get to 10000, which is impossible).
So you cannot really calculate growth when starting from 0. Only if starting from some non-negative number to another number.

If you want to handle the error, you can do something like this:
Excel Formula:
=IF(E4=0,"Cannot calculate",SUM(D4-E4)/E4)
 
Upvote 0
Solution
You are welcome!
Glad I was able to help.
 
Upvote 0

Forum statistics

Threads
1,215,084
Messages
6,123,029
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top