How to Calculate Percentage Increase in Excel — Formula & Examples | SheetMaster
Free formula generator
Open IF formula generatorCalculating percentage increase in Excel is one of the most common tasks in finance, sales reporting, and data analysis. The formula is simple once you understand it.
The Basic Percentage Increase Formula
The formula to calculate percentage increase between an old value and a new value is:
=(New Value - Old Value) / Old Value
Format the result cell as a Percentage (Ctrl+Shift+%) to display it correctly.
Step-by-Step Example
Last month's sales (B2) were $10,000 and this month's (C2) are $12,500:
=(C2-B2)/B2 → 25%
Calculate Percentage Increase for an Entire Column
If your old values are in column B and new values in column C, enter this in D2 and drag down:
=(C2-B2)/B2
Handle Negative Numbers (Avoid #DIV/0!)
If the old value might be zero, wrap it with IFERROR:
=IFERROR((C2-B2)/B2, "N/A")
Show Percentage Increase or Decrease with a Label
Use IF to add a label:
=IF((C2-B2)/B2>0,"▲ "&TEXT((C2-B2)/B2,"0.0%"),"▼ "&TEXT(ABS((C2-B2)/B2),"0.0%"))
Frequently Asked Questions
What is the Excel formula for percentage increase?
=(New-Old)/Old. Format the cell as Percentage to see the % symbol.
How do I calculate year-over-year growth in Excel?
Same formula: =(This Year - Last Year) / Last Year. Works for any time period.
Why does my percentage show as a decimal?
Select the cell and press Ctrl+Shift+% to apply Percentage formatting.
Need more formula help? Try our IF Formula Generator or explore our formula guides for more tips.
📋 Related Formula Tools
Want to generate the formula directly? Try our free formula generators:
📬 Get Weekly Excel Tips
Join thousands of Excel users who receive our weekly formula tips, tricks, and productivity hacks.
Subscribe Free →📖 Continue Reading
How to Get First Word from Cell in Excel (3 Formulas Compared)
Learn 3 Excel formulas to extract the first word from a cell — LEFT+FIND for all versions, TEXTBEFORE for Excel 365. Step-by-step with examples.
Excel Formula to Find Duplicates in Two Columns (Step-by-Step)
Find duplicate values across two columns in Excel using COUNTIF, VLOOKUP, and conditional formatting. Includes formulas to highlight and extract duplicates.
Calculate Business Days Between Two Dates in Excel (NETWORKDAYS)
Use the NETWORKDAYS and NETWORKDAYS.INTL functions to calculate the number of business days between two dates in Excel. Includes examples and holiday handling.
Convert Minutes to Hours and Minutes in Excel (3 Easy Methods)
Learn how to convert minutes to hours and minutes in Excel using division, TEXT function, and time formatting. Works with both small and large minute values.