How to Calculate Year Over Year Growth in Excel?
Year Over Year Growth is a Excel function that calculates the percentage change in revenue from the previous year to the current year, accounting for zero or negative prior year values.. Formula Genius generates and validates this formula automatically from a plain-English prompt.
Understanding revenue growth is crucial for businesses, and this formula helps you calculate it accurately, even in tricky situations.
The Formula
"Calculate year-over-year revenue growth percentage, handling cases where prior year value might be negative or zero"
=IF(A2=0, "N/A", (B2-A2)/ABS(A2))
This formula calculates the percentage change in revenue from the previous year to the current year, accounting for zero or negative prior year values.
Step-by-Step Breakdown
- Step 1: Check if the prior year revenue (A2) is zero.
- Step 2: If A2 is zero, return 'N/A' to indicate no growth can be calculated.
- Step 3: If A2 is not zero, calculate the difference between current year revenue (B2) and prior year revenue (A2).
- Step 4: Divide the difference by the absolute value of the prior year revenue (A2) to get the percentage change.
Edge Cases & Warnings
- Prior year revenue is zero, leading to division by zero.
- Prior year revenue is negative, which may affect percentage interpretation.
- Current year revenue is less than prior year revenue, resulting in negative growth.
- Both current and prior year revenues are zero, leading to 'N/A'.
Examples
"Prior Year Revenue: 100, Current Year Revenue: 150"
50%
"Prior Year Revenue: 0, Current Year Revenue: 200"
N/A
Frequently Asked Questions
What does 'N/A' mean in the result?
'N/A' indicates that the prior year revenue was zero, making growth calculation impossible.
How do I interpret negative growth?
Negative growth means the current year's revenue is less than the prior year's revenue.
Can this formula be used for other metrics?
Yes, you can adapt the formula for any metric where year-over-year comparison is needed.
Can't find what you need?
Describe any formula in plain English and Formula Genius will generate, explain, and validate it — instantly.