How to How to Calculate Percentage Increase Between Two Numbers in Excel
Learn to calculate percentage increase between two numbers using Excel formulas. This essential skill helps you analyze growth metrics, price changes, and performance improvements. You'll master the percentage increase formula and apply it to real-world datasets, enabling quick financial and statistical analysis without manual calculations.
Why This Matters
Percentage increase calculations are critical for business analysis, financial reporting, and data-driven decision-making. Automating this in Excel saves time and eliminates manual calculation errors.
Prerequisites
- •Basic understanding of Excel spreadsheet structure and cell references
- •Familiarity with simple arithmetic operations and formula entry
Step-by-Step Instructions
Enter your original and new values
Input your starting value in cell A1 and ending value in cell B1. For example, enter 100 in A1 (original price) and 150 in B1 (new price).
Click on the result cell
Select cell C1 where you want the percentage increase result to appear. This is where your formula will be entered.
Enter the percentage increase formula
Type the formula: =(B1-A1)/A1*100 and press Enter. This calculates (New Value - Original Value) / Original Value × 100.
Format the result as percentage (optional)
Right-click cell C1 > Format Cells > Number tab > select Percentage > OK. If using the formula above, set decimal places to 2 for clarity.
Copy the formula for multiple rows
Click C1, copy (Ctrl+C), select the range below, and paste (Ctrl+V) to calculate percentage increase for all data rows automatically.
Alternative Methods
Using the decimal format method
Use =(B1-A1)/A1 without multiplying by 100, then format as percentage. Excel automatically displays the result as a percentage.
Using the ROUND function for precision
Combine with ROUND: =ROUND((B1-A1)/A1*100,2) to limit results to 2 decimal places and prevent rounding errors.
Tips & Tricks
- ✓Always place the original value in the denominator to ensure accurate percentage calculations.
- ✓Use absolute references ($A$1) if you need to copy formulas while keeping the original value fixed.
- ✓For negative percentage increases (decreases), the formula still works—the result will display a negative percentage.
Pro Tips
- ★Create a custom number format [0.00"%"] to display percentages with consistent formatting across large datasets.
- ★Use conditional formatting (Home > Conditional Formatting > Color Scales) to visually highlight high and low percentage increases.
- ★Combine with IF statements to flag significant changes: =IF((B1-A1)/A1>0.1,"High Growth","Normal").
Troubleshooting
This occurs when the original value (denominator) is zero. Check that cell A1 contains a non-zero number, or use error handling: =IFERROR((B1-A1)/A1*100,0).
Right-click the cell > Format Cells > Number tab > select Percentage category > set decimal places > OK. Alternatively, multiply by 100 in the formula.
Verify you're using the correct formula: =(New-Original)/Original*100. Ensure Original and New values are in the correct cells and formatted as numbers, not text.
Related Excel Formulas
Frequently Asked Questions
Can I calculate percentage decrease using the same formula?
Should I multiply by 100 in the formula or use percentage formatting?
How do I handle negative original values?
Can I calculate compound percentage increases?
This was one task. ElyxAI handles hundreds.
Sign up