Excel Percent Change Calculator
Calculate percentage increase or decrease between two values with step-by-step Excel formulas
How to Calculate Percent Increase or Decrease in Excel (Complete Guide)
Master percentage calculations in Excel with these professional techniques and formulas
Understanding Percentage Change Basics
Percentage change measures the relative difference between an old value and a new value, expressed as a percentage. The fundamental formula is:
This formula works for both increases (positive results) and decreases (negative results). In Excel, you’ll implement this using cell references instead of static numbers.
Step-by-Step Excel Implementation
- Prepare your data: Enter your original value in cell A1 and new value in cell B1
- Create the formula: In cell C1, enter =(B1-A1)/A1 then press Enter
- Convert to percentage: Select cell C1, then:
- Go to the Home tab
- Click the Percentage Style button (%) in the Number group
- Optionally increase decimal places using the buttons next to it
- Interpret results:
- Positive numbers indicate increases
- Negative numbers indicate decreases
- 0% means no change between values
For quick percentage formatting, use the keyboard shortcut Ctrl+Shift+% (Windows) or Cmd+Shift+% (Mac) after entering your formula.
Advanced Percentage Calculations
1. Calculating Percentage of Total
To find what percentage each part contributes to a total:
Then format as percentage
2. Increasing/Decreasing by a Percentage
To calculate a new value after a percentage change:
=Original*(1-Percentage)
3. Percentage Difference Between Two Numbers
When comparing two values without a clear “original”:
Common Excel Percentage Functions
| Function | Purpose | Example | Result |
|---|---|---|---|
| =PERCENTAGE() | Doesn’t exist – use manual calculation | =(B1-A1)/A1 | Calculates change |
| =PERCENTRANK() | Returns percentage rank of a value | =PERCENTRANK(A1:A10, A5) | 0.4 (40th percentile) |
| =PERCENTILE() | Returns value at given percentile | =PERCENTILE(A1:A10, 0.75) | 75th percentile value |
| =GROWTH() | Calculates exponential growth | =GROWTH(B1:B10,A1:A10) | Growth trend values |
Real-World Business Applications
Percentage calculations are essential across industries:
| Industry | Application | Example Calculation | Business Impact |
|---|---|---|---|
| Retail | Sales growth analysis | (Q2 Sales – Q1 Sales)/Q1 Sales | Identifies best-selling products |
| Finance | Investment returns | (Current Value – Initial Investment)/Initial Investment | Evaluates portfolio performance |
| Marketing | Campaign effectiveness | (Post-Campaign Sales – Baseline)/Baseline | Measures ROI on marketing spend |
| Manufacturing | Defect rate reduction | (Previous Defects – Current Defects)/Previous Defects | Tracks quality improvements |
| Human Resources | Employee turnover | (Separations/Average Headcount)×100 | Identifies retention issues |
A national retailer used percentage change calculations to identify that their online sales grew by 147% during Q2 2023 compared to Q2 2022, while in-store sales declined by 12%. This insight led them to reallocate marketing budget from physical stores to digital channels, resulting in a 23% overall revenue increase by year-end.
Common Mistakes and How to Avoid Them
- Dividing by the wrong value: Always divide by the original value (denominator), not the new value
- Ignoring absolute references: Use $A$1 when copying formulas to maintain correct cell references
- Misinterpreting negative percentages: A -15% change means a 15% decrease, not an increase
- Forgetting to format as percentage: Raw decimal results (0.15) need percentage formatting to display as 15%
- Using SUM instead of individual cells: =SUM(B1:B10)/A1 gives incorrect results for percentage change
If your percentage change seems incorrect, use Excel’s Evaluate Formula tool (Formulas tab → Formula Auditing → Evaluate Formula) to step through each part of your calculation.
Excel Shortcuts for Percentage Calculations
| Action | Windows Shortcut | Mac Shortcut |
|---|---|---|
| Apply percentage format | Ctrl+Shift+% | Cmd+Shift+% |
| Increase decimal places | Alt+H, 0 | Cmd+1, then adjust |
| Decrease decimal places | Alt+H, 9 | Cmd+1, then adjust |
| Insert function (for PERCENTRANK, etc.) | Shift+F3 | Shift+F3 |
| Toggle absolute/relative references | F4 | Cmd+T |
Authoritative Resources
For additional learning about percentage calculations in Excel:
Frequently Asked Questions
A: In a new column, enter =(B2-A2)/A2 and drag the formula down. Then format as percentage.
A: You need to format the cell as a percentage. Either use the % button on the ribbon or the Ctrl+Shift+% shortcut.
A: Yes, the formula works the same way. For example, changing from -10 to -5 would be a 50% increase: =(-5-(-10))/(-10) = 0.5 or 50%
A: Use this formula: =(Ending_Value/Starting_Value)^(1/Number_of_Periods)-1
A: Percentage change measures relative to an original value (directional). Percentage difference compares two values without direction (always positive).