Excel Percentage Increase Calculator
Quickly calculate percentage increase between two numbers and understand exactly how to write the formula in Excel.
How to Calculate Percentage Increase Between Two Numbers in Excel: Complete Expert Guide
If you work in finance, operations, sales, marketing, education, or public policy, percentage increase is one of the most important calculations you will use in Excel. It tells you how much a number has grown relative to its starting point. In practical terms, this can answer questions like: How much did revenue grow year-over-year? How much did rent increase from one lease cycle to the next? How much has inflation changed the cost of goods over time?
The core idea is simple: compare the difference between a new number and an old number, then scale it by the old number. In Excel, the standard formula is:
=(NewValue-OldValue)/OldValue
After entering this formula, format the cell as a percentage to display the result clearly. For example, if A2 contains 100 and B2 contains 125, then =(B2-A2)/A2 returns 25%.
The Exact Excel Formula You Should Use
Assume your old value is in cell A2 and your new value is in cell B2. In C2, enter:
- =(B2-A2)/A2
- Press Enter.
- Apply percentage formatting from the Home tab.
You can also write the same calculation as =B2/A2-1. Both are mathematically identical. Many analysts prefer the first version because it clearly shows the change amount before dividing by the baseline.
Why the Baseline Matters
Percentage increase always uses the original value as the denominator. That is what makes the result comparable across categories. If your old value is 50 and new value is 75, the increase is 25. Dividing by 50 gives 50%. If you divide by 75 instead, you get a different metric and the interpretation changes. In business reporting, this mistake creates inconsistent dashboards and misleading trend analysis.
How to Handle Common Excel Scenarios
- Growth from last month: Use the previous period as old value and current period as new value.
- Year-over-year growth: Compare this year’s figure against the same month or quarter last year.
- Multiple rows: Enter the formula in one row and drag down using fill handle.
- Dashboard use: Keep values numeric and apply conditional formatting for positive and negative changes.
What If the Result Is Negative?
If the new number is smaller than the old number, Excel returns a negative percentage. This is not an error. It indicates a percentage decrease. Example: old value 200, new value 150. Formula gives (150-200)/200 = -25%. In reports, you can label this as “decrease” while keeping one formula for all rows.
Handling Zero and Blank Values Correctly
Division by zero is the most common issue in percentage change models. If old value is 0, the expression is undefined because you cannot divide by zero. Use IFERROR or an explicit check to make your sheet robust:
- =IF(A2=0,”N/A”,(B2-A2)/A2)
- =IFERROR((B2-A2)/A2,”N/A”)
Use your team standard for missing values, such as “N/A”, blank cell, or 0%. For analytics quality, documenting this choice is important.
Real World Comparison Table: U.S. CPI Inflation Trend (BLS)
The table below uses Consumer Price Index annual average values from the U.S. Bureau of Labor Statistics. This is a practical example of percentage increase used in economics and budgeting.
| Year | CPI-U Annual Average Index | Formula | Percentage Increase vs Prior Year |
|---|---|---|---|
| 2019 | 255.657 | Baseline | – |
| 2020 | 258.811 | (258.811 – 255.657) / 255.657 | 1.23% |
| 2021 | 270.970 | (270.970 – 258.811) / 258.811 | 4.70% |
| 2022 | 292.655 | (292.655 – 270.970) / 270.970 | 8.00% |
| 2023 | 304.702 | (304.702 – 292.655) / 292.655 | 4.12% |
Source dataset: U.S. Bureau of Labor Statistics CPI program.
Real World Comparison Table: U.S. Population Change (Census)
Percentage increase is also central to demographic analysis. The following example compares U.S. resident population counts from Census data releases and estimates.
| Period | Population | Calculation | Percentage Increase |
|---|---|---|---|
| 2010 Census | 309,321,666 | Baseline | – |
| 2020 Census | 331,449,281 | (331,449,281 – 309,321,666) / 309,321,666 | 7.15% |
| 2023 Estimate | 334,914,895 | (334,914,895 – 331,449,281) / 331,449,281 | 1.05% |
Reference source: U.S. Census Bureau data portal.
How to Build a Reliable Percentage Increase Template in Excel
If you repeat this analysis often, build a reusable worksheet template. Put old values in one column, new values in another, and calculation formulas in a third. Lock formula columns and protect sheets to prevent accidental edits. Add data validation to block text entries in numeric fields. Then include a summary section with average increase, median increase, and highest increase using AVERAGE, MEDIAN, and MAX.
You can also include dynamic charts. A clustered column chart works well for old vs new values, and a line chart on a secondary axis can display percentage increase. This creates an executive-friendly visual and helps decision makers spot growth concentration across products, geographies, or business units.
Percentage Increase vs Percentage Point Change
These terms are often confused. Percentage increase compares relative growth. Percentage points compare arithmetic difference between two percentages. Example: if conversion rate rises from 10% to 12%, that is a 2 percentage point increase and a 20% percentage increase. In Excel dashboards, label these explicitly. Using the wrong term can lead to serious reporting errors in leadership updates.
Advanced Tips for Analysts and Finance Teams
- Use structured references in Excel tables, such as =([@New]-[@Old]) / [@Old], for cleaner formulas.
- Apply ROUND if presentation precision matters: =ROUND((B2-A2)/A2,4).
- Use Power Query to automate imports and keep percent-change calculations current.
- For long periods, compute annualized growth (CAGR): =(B2/A2)^(1/Years)-1.
- Keep negative values and zero baselines documented in a data dictionary.
Quality Control Checklist Before You Publish Results
- Confirm old and new columns are not reversed.
- Verify no divide-by-zero rows remain unresolved.
- Spot-check at least five rows manually with a calculator.
- Ensure output cells are formatted as percentages.
- Audit outliers with very high positive or negative changes.
- Record source date and extraction method in sheet notes.
Applying Percentage Increase to Economic and Business Data
When you apply this Excel method to public datasets, you turn raw numbers into trends. For example, BEA national accounts data can be transformed into quarter-over-quarter growth rates in seconds once your formula structure is ready. This is exactly how strategic analysts build recurring performance briefs. You can explore additional official economic data from the U.S. Bureau of Economic Analysis data portal.
The strength of percentage increase is comparability. A business line growing from 1 million to 1.2 million has the same growth rate as another line growing from 10 million to 12 million, even though absolute dollars differ. That gives leadership a fair way to compare momentum across categories and prioritize investment.
Final Takeaway
To calculate percentage increase between two numbers in Excel, use =(New-Old)/Old and format as percentage. That one formula is the foundation for inflation analysis, pricing decisions, revenue tracking, operations reviews, and policy reporting. If you pair it with clean input validation, clear handling of zero baselines, and consistent labeling, your analysis becomes both accurate and decision-ready.
Use the calculator above to validate your numbers quickly, then copy the same logic into your spreadsheet model for repeatable, professional results.