Home
Challenges
Calculate Percent Change
Analysis
Easy

Calculate Percent Change

An Excel report compares old and new values, and you need to show whether each result increased or decreased by percentage.

AuthorExcelClash Team
PublishedApr 02, 2026
Calculate Percent Change

The Problem

Reports often compare two periods side by side, but the raw numbers do not always tell a fair story. A product that gained 500 dollars might be doing great if it started small, or barely moving if it already had a huge baseline.

That is why percent change is more useful than plain subtraction in many business sheets. It explains the movement relative to where the item started, so growth and decline can be compared across products that do not share the same starting revenue.

The flow below shows the difference between movement and meaning. The old and new values create the movement, but the percent change turns that movement into something you can compare across the whole list.

Percent change problem flow
The Problem: Reading Growth Fairly Raw movement only becomes useful after it is compared with the starting value.

In this workbook, each product has Q1 revenue and Q2 revenue. The sheet needs to calculate the growth percentage for each row, then use the summary area to show the total starting revenue and count which products grew strongly enough to pass the performance rule.

Compare the same item across two periods
old value -> new value -> percent change
row trend -> summary count

This keeps the report from overreacting to raw dollar changes. The row-level percentage shows direction and scale, while the summary gives a quick snapshot of how many items actually performed well.

Related Challenge to This Problem

  • Calculate Running Totals
  • Identify Top Performers
  • Flag High Value Customers

How We Solve It

The standard formula is (New - Old) / Old. First find the difference, then divide that difference by the original value.

That gives you a decimal result which Excel can display as a percentage. Positive values mean growth, and negative values mean decline.

Method 1: Standard Percent Change

Basic Growth Illustration
Method 1: Use the standard percent change formula based on old and new values.

This is the clearest version because it shows the story in the same order a person would explain it: find the difference first, then compare that difference to the starting value.

It is a good default for shared workbooks because the parentheses make the order obvious. Someone reviewing the sheet can immediately see that the formula is measuring change from the original period, not just dividing two numbers randomly.

=(C2-B2)/B2

Method 2: Compact Ratio Version

Fast Variance Illustration
Method 2: Use a compact ratio formula that returns the same percent change.

You can also write percent change as New / Old - 1. This treats the new value as a ratio of the old value, then removes the original 100 percent baseline.

Some analysts prefer this version because it is fast to type and clean in dashboards. The caution is that it is less beginner-friendly, so the standard formula may be better when the workbook needs to teach or explain itself.

=C2/B2-1

Method 3: Measure Change Size Only

Format Variance Illustration
Method 3: Use ABS when you want the size of the change without caring about direction.

If the goal is to measure how large the movement was, not whether it went up or down, you can wrap the difference in ABS. That removes the negative sign from declines and focuses only on size.

This is useful in variance dashboards where a 15 percent drop and a 15 percent increase both deserve attention. It is not the best choice for this challenge's growth column, because here the direction still matters.

=ABS(C2-B2)/B2

Function Explanation

1. Division

Division is what turns a raw difference into a relative change. Without it, you only know the amount of movement, not whether that movement is large or small compared with where the item started.

That makes division the part of the formula that makes the report fair across different product sizes. A small product and a large product can be compared using the same percentage scale.

2. Parentheses

Parentheses make the order of operations clear. In the standard formula, they force Excel to calculate the difference before dividing by the old value.

That detail prevents a subtle mistake where only part of the expression gets divided. It also makes the formula easier for another person to read later.

3. Percent Format

Excel stores percent-change results as decimals, so formatting matters. A result like 0.25 is mathematically correct, but it is much easier to read as 25%.

That is why percentage formatting is part of the workflow, even though the underlying value stays the same. It helps the report communicate clearly without changing the calculation.

If the old value is 0, percent change formulas can break because you would be dividing by zero. That is a useful edge case to watch in real reports.

Try Yourself

Calculate the percent change from Q1 to Q2 for each product, then review the summary section to see the total starting revenue and how many items grew by more than 20 percent. This gives you both the row-level trend and a quick performance snapshot in one sheet.

1
Objective #1
Cell: D2-D6

In Column D, calculate the percentage of growth from Q1 to Q2 (New vs. Old).

2
Objective #2
Cell: D2-D6

Format Column D as a Percentage with 0 decimal places.

3
Objective #3
Cell: B9

In cell B9, find the total revenue for all items in Q1.

4
Objective #4
Cell: B10

In cell B10, count how many products have a growth percentage greater than 20%.

Tactical Arena
Objectives Met: 0 / 0
Share this challenge
Share this challenge

Let others know about this challenge!

Related Challenges
Lookup
#12
Convert Currency Rates

An Excel price list is stored in USD, and you need to convert every amount with one fixed exchange rate.

Easy
Analysis
#13
Sum Values by Status

An Excel invoice list mixes payment statuses, and you need to total amounts separately based on whether they are paid or pending.

Easy
Lookup
#14
Find the Most Recent Order

An Excel order table stores customer dates, and you need to find the latest order overall and for a selected customer.

Easy
Analysis
#15
Calculate Pass/Fail Grades

An Excel grade sheet needs final results, and you need to average each student score, apply the pass mark, and count who passed.

Easy
Discussion
0 Feedbacks
ExcelClash

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster—without boring lessons. Just hands-on practice that actually sticks.

Navigation
Back to Challenges
Go to Dashboard
Platform Home
Discover
SUM FunctionsLookup FunctionsConditional FunctionsLogical Functions
Support
About UsContact UsPrivacy PolicyTerms of Service
© 2026 ExcelClash, Inc. All rights reserved.
Objectives Met: 0 / 0