Why Percentage Change Matters (And Why It's Not Scary)
You want numbers to tell a story fast. Did revenue actually grow, or is someone just playing PowerPoint games? Percentage change and percentage increase answer that in one line, and you don't need a math PhD or a wall of formulas. You only need the right denominator, a steady hand, and a calculator that doesn't lie.
The secret? It's just comparing "what happened" to "what you started with."
What Percentage Change Means in Plain English
Percentage change compares a new value to an old value and reports the difference as a share of the old value.
- Positive result means increase
- Negative result means decrease
Core formula:
Yes, that's it. Most disasters come from using the wrong old value or from dividing by zero, not from the math itself.
Quick Step-by-Step Example
Let's say sales moved from 80 to 100.
- New β Old = 100 β 80 = 20
- Divide by Old = 20 Γ· 80 = 0.25
- Convert to percent = 0.25 Γ 100% = 25% increase
If sales moved from 120 down to 90:
- New β Old = 90 β 120 = β30
- Divide by Old = β30 Γ· 120 = β0.25
- Convert to percent = Γ 100% β β25% change (which is a 25% decrease)
No drama, just signs.
How to Calculate Percentage Increase Specifically
If you only care about increases, keep the same formula and then check if the result is positive. When it's positive, call it percentage increase. When it's negative, call it a decrease and move on with your day.
Do It in Excel Without Clicking Twelve Menus
You only need one formula. Put Old in cell B2 and New in C2.
=(C2 - B2) / B2
Format the cell as Percentage with one or two decimals. Copy down the column. If you hate errors:
=IFERROR((C2 - B2) / B2, "")
With Labels or Conditions
Show "increase" or "decrease" with the value:
=IF(C2>B2, (C2-B2)/B2, (C2-B2)/B2)
Same math, but you can add a helper text column:
=IF(C2>B2,"increase","decrease")
Avoid Divide by Zero Explosions
If Old can be zero, guard it:
=IF(B2=0, "", (C2-B2)/B2)
In real life, when Old is zero you can't compute a meaningful percent change. Use an absolute difference or explain growth "from zero" in words.
Percentage Points vs Percent Change
If a rate goes from 5% to 7%:
- Percentage points moved by 2 points
- Percent change is
Use percentage points when you're comparing rates or shares. Use percent change for most everything else. Mixing them makes dashboards misleading and colleagues grumpy.
Compounding Across Multiple Steps
Two increases don't add; they compound. If a price rises 10% and then 20%:
- After the first increase: multiply by
- After the second increase: multiply by
- Combined factor:
- Net change:
Reverse moves don't cancel either. Up 25% then down 25% leaves you short:
- Start 100
- Up 25% β 100 Γ 1.25 = 125
- Down 25% β 125 Γ 0.75 = 93.75
- Net change = 93.75 β 100 = β6.25 which is β6.25%
So yes, you can be up and still end down. Markets love that trick.
Multi-Period Growth with CAGR
When your boss says "average growth over several years," they usually want CAGR which smooths the compound path.
If revenue grows from 400 to 625 over 3 years:
- New Γ· Old = 625 Γ· 400 = 1.5625
- Cube root of 1.5625 β 1.157 (you can use
=POWER(1.5625, 1/3)in Excel) - Subtract 1 β 0.157
- Convert to percent β 15.7% per year
That matches reality better than averaging yearly percent changes.
Weighted Change for Bundles of Items
A simple average of percent changes is wrong when items have different sizes. Use weights.
Suppose product A goes from 200 to 220 and product B goes from 50 to 65.
- A change = 220 β 200 = 20
- B change = 65 β 50 = 15
- Total old = 200 + 50 = 250
- Total change = 20 + 15 = 35
- Weighted percent change = 35 Γ· 250 = 0.14 = 14%
If you averaged the individual rates:
- A: 20 Γ· 200 = 10%
- B: 15 Γ· 50 = 30%
- Plain average = 20% which overstates the real combined change
Weight it or regret it.
Negative Starting Values and Other Awkward Cases
Going from β50 to β20:
- New β Old = β20 β (β50) = 30
- 30 Γ· β50 = β0.60 = β60%
Mathematically that's a β60% change because the denominator is negative. In plain English the value increased toward zero. If you care about magnitude only, use the absolute baseline:
Still negative. The cleanest fix is to avoid percent change with signed quantities and report the absolute change, or split the metric into magnitude and sign. Your audience will thank you.
When Old = 0 there's no defined percent change. Say "went from 0 to 12" or use ratios like per unit instead.
Clean Presentation That Doesn't Mislead
- Round at the end not mid-calculation
- Show one or two decimals for percentages unless you enjoy clutter
- Label increase or decrease in a text column for quick scanning
- If you publish charts, note whether values are percentage points or percent change
- Cross-check totals before you email the file
Copy-Ready Excel Snippets
Basic percentage change:
=(C2 - B2) / B2
Display increase/decrease text:
=IF(C2>B2,"increase","decrease")
Guard against divide by zero:
=IF(B2=0,"",(C2-B2)/B2)
CAGR over n years:
=POWER(C2/B2, 1/n) - 1
Replace n with your year count or a cell reference.
Real-World Applications
| Context | Example Use Case |
|---|---|
| Business | Quarterly revenue growth, cost reduction tracking |
| Investing | Stock price changes, portfolio performance |
| Marketing | Conversion rate improvements, traffic growth |
| Operations | Efficiency gains, error rate reductions |
Common Mistakes and Easy Fixes
- Using the wrong denominator β Always use the original (old) value as the base
- Mixing percentage points with percent change β Be clear about which you're using
- Adding percentage changes β They compound, not add
- Dividing by zero β Guard against zero denominators
- Rounding too early β Keep precision until the final step
Quick Reference Cheat Sheet
- Formula:
- Positive result = increase
- Negative result = decrease
- Multiple changes = compound (multiply factors)
- CAGR =
- Percentage points β percent change
FAQ
Q: What's the difference between percentage change and percentage increase?
Percentage change can be positive (increase) or negative (decrease). Percentage increase only refers to positive changes.
Q: How do I handle negative starting values?
Be cautious. The math works but interpretation gets tricky. Consider using absolute changes or magnitude-based metrics instead.
Q: Can I add percentage changes together?
No, they compound. If you're up 10% then up 20%, you're up 32% total, not 30%.
Q: What's CAGR and when should I use it?
CAGR (Compound Annual Growth Rate) smooths growth over multiple periods. Use it when you want to know the "average" annual growth rate.
Q: How do I avoid divide-by-zero errors in Excel?
Use =IF(B2=0, "", (C2-B2)/B2) or =IFERROR((C2-B2)/B2, "") to handle zero denominators gracefully.
Wrapping Up
Percentage change isn't mysteriousβit's just a way to put growth and decline into perspective. Master the basic formula, watch out for the common pitfalls, and you'll have a tool that works in spreadsheets, presentations, and real conversations.
Remember: the key is getting the denominator right. Use the original value, guard against zeros, and always double-check your work. Now go forth and calculate those changes with confidence.