How To Show Percent Increase In Excel: Step-by-Step Guide

9 min read

How to Show Percent Increase in Excel – A No‑Nonsense Guide

Ever stared at a column of numbers and wondered, “Did sales really jump 27 % last quarter, or am I just reading it wrong?And ” You’re not alone. Most of us have been there—clicking around spreadsheets, trying to turn raw data into a clear, eye‑catching percent increase. The good news? Excel makes it easier than you think, once you know the right tricks.


What Is Showing Percent Increase in Excel

When we talk about “showing percent increase,” we’re really just talking about two things: the math that tells you how much something grew, and the way you display that result so anyone can read it at a glance. In Excel, the math is a simple formula—new value minus old value, divided by the old value. The display part is where formatting, conditional formatting, and a few clever functions come into play Less friction, more output..

Think of it like cooking. The ingredients (the numbers) are the same, but the recipe (the formula and formatting) decides whether you end up with a bland stew or a dish that looks as good as it tastes.


Why It Matters / Why People Care

Percent increase is the lingua franca of business reports, marketing dashboards, and even personal finance trackers. A 5 % bump in website traffic feels way more impressive than “500 extra visitors.” It lets you compare apples to oranges—different scales, same metric Which is the point..

When you get the math wrong, decisions go sideways. Imagine approving a budget based on a “10 % growth” that was actually a 1 % dip because the formula was off. In practice, clear percent‑increase visuals keep stakeholders on the same page and prevent costly misinterpretations Took long enough..


How It Works (or How to Do It)

Below is the step‑by‑step roadmap. Grab a fresh worksheet, and let’s walk through the most common scenarios.

1. Basic Percent Increase Formula

The core formula is:

=(NewValue‑OldValue)/OldValue
  1. Enter your data.

    • A2 = old value (e.g., 120)
    • B2 = new value (e.g., 150)
  2. In C2, type =(B2‑A2)/A2 Practical, not theoretical..

  3. Press Enter. You’ll see a decimal like 0.25.

  4. Format as percent.

    • Select C2 → Home tab → click the % button or press Ctrl + Shift + %.
    • Now it reads 25 %.

That’s the foundation. From here, you can expand to whole columns, dynamic ranges, and more Worth keeping that in mind..

2. Calculating Percent Increase Across a Column

If you have a list of monthly sales in column A (old month) and column B (new month), you don’t want to type the formula over and over.

  1. Put the formula in C2 as above.
  2. Drag the fill handle (the little square at the cell’s bottom‑right) down to the last row. Excel automatically adjusts the references (B3‑A3)/A3, B4‑A4/A4, etc.

3. Using the PERCENTCHANGE Function (Excel 365)

If you’re on Office 365, there’s a built‑in function that does the heavy lifting:

=PERCENTCHANGE(old, new)

Just type =PERCENTCHANGE(A2,B2) and you’re done. It returns the same decimal, which you can format as a percent And that's really what it comes down to..

4. Handling Zero or Blank Values

Dividing by zero throws a #DIV/0! error. To keep your sheet tidy:

=IF(A2=0, "", (B2‑A2)/A2)

Now blank cells stay blank, and you can still format the result as a percent Not complicated — just consistent..

5. Showing Increase vs. Decrease with Color

A quick visual cue helps readers spot trends.

  1. Select the percent column (e.g., C2:C100).
  2. Home → Conditional Formatting → New Rule → Format only cells that contain.
  3. Set the rule: Cell Value > 0 → format with green fill.
  4. Add another rule: Cell Value < 0 → format with red fill.

Now positive growth glows green, negative shrinkage turns red. Real‑talk: this alone makes a report feel polished And it works..

6. Adding a “% Increase” Label

Sometimes you need the word “increase” next to the number, especially in presentations.

=TEXT((B2‑A2)/A2, "0.0%") & " increase"

Result: 25.0% increase. Swap “increase” for “decrease” with an IF statement if you want it to adapt automatically:

=IF((B2‑A2)/A2>=0,
   TEXT((B2‑A2)/A2,"0.0%") & " increase",
   TEXT(ABS((B2‑A2)/A2),"0.0%") & " decrease")

7. Calculating Cumulative Percent Increase

If you need the total growth from the first period to the last (say, Year‑to‑Date), you can use the XLOOKUP or just reference the first and last cells:

=(B100‑A2)/A2

Assuming A2 is the starting value and B100 the ending value. Format as percent, and you’ve got the big picture.

8. Using PivotTables for Dynamic Percent Change

When you have a massive dataset—sales by region, month, product—PivotTables let you slice and dice without writing a single formula The details matter here..

  1. Insert → PivotTable → select your table.
  2. Drag Date to Rows, Sales to Values.
  3. Click the dropdown on the Values field → Value Field SettingsShow Values As% Difference From.
  4. Choose Base field (e.g., Date) and Base item (Previous).

Now the PivotTable automatically shows month‑over‑month percent change. The short version is: PivotTables are a shortcut for anyone who hates manual formulas.


Common Mistakes / What Most People Get Wrong

  • Forgetting to lock the denominator.
    When copying formulas across rows, you might accidentally reference the wrong “old value.” Use absolute references ($A$2) only when you truly need a fixed cell—most of the time you want relative references The details matter here..

  • Formatting before calculating.
    If you hit the % button first, Excel multiplies the result by 100, turning 0.25 into 25 % before you even run the formula. The math then becomes 2500 %—a disaster.

  • Ignoring negative numbers.
    A drop from 200 to 150 is a ‑25 % change, not a “+25 % increase.” Some folks take the absolute value and lose the story. Use the IF trick above to keep the sign clear Small thing, real impact..

  • Using whole‑column references in older Excel versions.
    =(B:B‑A:A)/A:A works in Office 365 but can cripple performance in Excel 2016. Stick to explicit ranges unless you’re on the latest version.

  • Skipping error handling.
    Blank cells, text entries, or zeros will break the formula. Wrap it in IFERROR or IF(ISNUMBER(...)) to keep the sheet clean.


Practical Tips / What Actually Works

  1. Create a “Percent Increase” template sheet.
    Set up columns for Old, New, and % Change, with all the formatting and conditional rules baked in. Duplicate the sheet for each project—no need to reinvent the wheel.

  2. apply named ranges.
    Define OldSales and NewSales as named ranges. Your formula becomes =(NewSales‑OldSales)/OldSales. It reads like English and reduces errors.

  3. Combine with sparklines.
    Insert a tiny line chart next to each row (Insert → Sparklines). Pair it with the percent column, and you get a visual trend plus the exact number Surprisingly effective..

  4. Use the “Quick Analysis” tool.
    Highlight your data, hit the little lightning bolt at the bottom right, choose “Totals,” then “% Change.” Excel does the formula for you—great for one‑offs.

  5. Document assumptions.
    Add a note (right‑click → New Comment) explaining that the percent change is calculated as (New‑Old)/Old. Future you (or a teammate) will thank you when the spreadsheet gets passed around Simple, but easy to overlook. Turns out it matters..

  6. Automate with VBA only if you must.
    Most percent‑increase tasks are doable with built‑in functions. If you find yourself writing a macro for every report, step back and ask if a PivotTable or Power Query could handle it instead.


FAQ

Q: How do I show percent increase when the old value is zero?
A: You can’t divide by zero, so you need a rule. Common practice is to display “N/A” or “New value” if the old value was zero. Example: =IF(A2=0, "N/A", (B2‑A2)/A2) Small thing, real impact. Nothing fancy..

Q: Can I calculate percent increase for multiple periods in one formula?
A: Yes. Use =SUMPRODUCT((NewRange‑OldRange)/OldRange)/COUNT(OldRange) to get the average percent change across a range.

Q: What's the difference between “percent increase” and “percent change”?
A: Technically, “percent increase” assumes the new value is higher; “percent change” works for both up and down movements. In Excel, the same formula covers both; just pay attention to the sign.

Q: How do I round the percent to one decimal place?
A: Apply =ROUND((B2‑A2)/A2, 2) then format as percent. Two decimal places in the formula equal one decimal place displayed (because 0.01 = 1 %).

Q: My percent column shows 0 % even though numbers changed. Why?
A: Most likely the column is still formatted as a number, not a percent, or the formula result is a tiny decimal that’s being rounded down. Check the cell format and increase the number of decimal places Worth knowing..


That’s it. You now have the math, the formatting tricks, the pitfalls, and a handful of shortcuts to make showing percent increase in Excel feel almost automatic. Next time you open a spreadsheet, you’ll know exactly where to look—and how to make those numbers pop. Happy charting!

Additional Tips for Real-World Scenarios

Handling negative numbers requires extra caution. When both values are negative, the math still works, but the interpretation can be confusing. A common approach is to use =IF(AND(A2<0, B2<0), (B2-A2)/ABS(A2), (B2-A2)/A2) to ensure you're comparing magnitudes correctly.

Conditional formatting can make your percent changes instantly readable. Select your percent column, go to Home → Conditional Formatting → Color Scales. Green for positive changes and red for negative ones become automatic—no manual formatting needed.

Create a dynamic dashboard by linking your percent increase cells to a summary sheet. Use =INDEX(MATCH()) to pull the top performer or biggest loser automatically. This turns a simple calculation into a living report that updates as data changes.

Backup your work before applying bulk formatting or formulas to large datasets. A quick duplicate sheet (Ctrl+D) takes seconds but can save hours of rework if something goes wrong No workaround needed..


Final Thoughts

Percent increase isn't just a math exercise—it's a story about growth, decline, and performance. The formulas you've learned here are tools, but how you apply them determines their value. Clean data, clear labels, and consistent formatting transform raw numbers into insights that drive decisions Not complicated — just consistent..

Start simple with the basic formula, layer in named ranges and conditional formatting as your needs grow, and don't forget the power of visual aids like sparklines. Your spreadsheets will not only be accurate—they'll be impossible to ignore.

Now go ahead and put these techniques to work. Your next report will be the best one yet Not complicated — just consistent..

New This Week

Hot Topics

Similar Territory

A Few More for You

Thank you for reading about How To Show Percent Increase In Excel: Step-by-Step Guide. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home