How to Add Percentage to Percentage: The Right Way to Combine Two Percentages
Adding percentages together sounds straightforward — until you realize that doing it wrong is one of the most common math mistakes in spreadsheets, financial reports, and data analysis. Whether you're working with growth rates, tax figures, discount stacks, or storage usage across cloud services, understanding how percentage addition actually works saves you from quietly wrong numbers.
Why You Can't Always Just Add Percentages Together
The instinct is natural: if something grows by 10% and then grows by another 10%, that's 20% total, right? Not quite.
The answer depends entirely on what the percentages are referencing.
There are two fundamentally different situations:
- Both percentages refer to the same base value — in this case, simple addition works.
- The second percentage applies to a new value — in this case, simple addition gives you the wrong answer.
Getting these two cases mixed up is where errors happen.
Case 1: Same Base — Simple Addition Works ✅
If you're combining two percentages that both refer to the same original number, you can add them directly.
Example: A file storage plan offers 15% more space to new users and a promotional 10% bonus running simultaneously — both calculated on the base plan size. The total bonus is simply 15% + 10% = 25% of the base.
This also applies when:
- Splitting a dataset into categories (30% documents, 20% images, 50% other = 100%)
- Calculating combined tax rates applied to the same price
- Summing up portions of disk usage that are each expressed as a share of total capacity
As long as the denominator (base) doesn't change between the two percentages, addition is valid.
Case 2: Sequential Percentages — Addition Understates the Result
When a second percentage is applied to a value that's already been changed by the first percentage, the math is compounding — not additive.
Example: A folder is 10% larger than last month. This month it grows another 10%. The total growth is not 20%.
Here's why:
- Start: 100 units
- After first 10% increase: 110 units
- After second 10% increase (on 110): 121 units
- Actual total increase: 21%, not 20%
This is called compound growth, and it shows up constantly in:
- Year-over-year data growth calculations
- Compounding interest or fees
- Sequential discounts applied to a price
- Storage consumption forecasts over multiple periods
The Formula for Sequential Percentages
To find the true combined effect of two sequential percentage changes:
Combined multiplier = (1 + A/100) × (1 + B/100) Total % change = (Combined multiplier − 1) × 100 Using the example above:(1.10) × (1.10) = 1.21 → 21% total increase
For percentage decreases, use subtraction instead: (1 − A/100) × (1 − B/100)
Example of stacked discounts: A file hosting service charges a base price, with a 20% loyalty discount followed by a 10% promo discount. (0.80) × (0.90) = 0.72 → You pay 72% of the original price — a 28% total discount, not 30%.
Quick Reference: Which Method Applies?
| Situation | Method | Example |
|---|---|---|
| Both % share the same base | Add directly | 15% + 10% = 25% |
| % applied one after another | Multiply the multipliers | 10% then 10% = 21% |
| Combining parts of a whole | Add directly | 40% + 60% = 100% |
| Growth over multiple periods | Compound formula | Varies by rate |
| Stacked discounts | Multiply the multipliers | 20% + 10% ≠ 30% |
Percentage Points vs. Percentages — A Critical Distinction 📊
There's another layer worth knowing: percentage points and percentages are not the same thing, even though both use the "%" symbol.
- If storage usage goes from 40% to 50% of capacity, it increased by 10 percentage points.
- But that same change is a 25% increase relative to the starting value (10 ÷ 40 = 0.25).
Mixing these up leads to dramatically different — and misleading — conclusions. Financial documents, data dashboards, and cloud storage analytics often present both types without clearly labeling which one is being used. Always check what the baseline is before interpreting any combined percentage figure.
How This Plays Out in Spreadsheets and Data Tools
In Excel, Google Sheets, and similar tools, the math follows the same rules — the software won't catch a conceptual error for you.
Common spreadsheet mistakes:
- Using
=A1+A2when both cells contain sequential growth rates (should be=(1+A1)*(1+A2)-1) - Summing percentage columns without confirming they share a base
- Displaying a compound result as a simple sum in a report
If you're building a formula to combine percentages in a spreadsheet, the safest habit is to always write out the base values explicitly before calculating the combined percentage — it forces the logic into the open.
The Variable That Determines Everything
Whether simple addition or compound calculation gives you the right answer comes down to one question: does the second percentage operate on the original value, or on a value already changed by the first percentage?
That question sounds simple, but in practice it depends heavily on context — what kind of data you're working with, how the percentages were originally defined, what time period or baseline was used, and what you're trying to communicate with the result. The math itself is consistent; the judgment call about which math applies is where individual situations diverge.