HomeArticlesHow ToHow to Calculate Percentage Change
HOW TO

How to Calculate Percentage Change

Calculate percentage change step by step — the formula, increase vs decrease, common mistakes, and how to apply it to sales and investment returns.

Reviewed by the thecalcu.com team · Last updated August 4, 2026

Percentage change ranks among the most widely used calculations in finance, business, and everyday life, and also among the most frequently misapplied. Getting the denominator wrong, or confusing percentage change with percentage points, can lead to faulty decisions in everything from investment analysis to quarterly business reviews. This guide walks through the formula, worked examples, and the pitfalls that trip up even experienced analysts.

What Is Percentage Change?

Percentage Change measures how much a value has increased or decreased relative to its original value, expressed as a percentage. The key word is relative. It tells you the size of the change in proportion to where you started, not just the raw difference.

It answers questions like "our revenue went up by $12,000, but is that good or bad?" Whether it's impressive depends entirely on what you started with. A $12,000 gain on an $80,000 base is a 15% increase. On an $8,000 base, it would be 150%.

Step 1: The Core Formula

% Change = [(New Value − Old Value) / Old Value] × 100

Worked example, sales growth:

A business reports monthly sales of $80,000 in March and $92,000 in April.

% Change = [(92,000 − 80,000) / 80,000] × 100
         = [12,000 / 80,000] × 100
         = 0.15 × 100
         = 15%

Sales grew 15% month-over-month. The Percentage Change Calculator runs these numbers instantly without manual arithmetic.

Step 2: Percentage Decrease

The same formula handles decreases, just with a negative result.

Worked example, price drop:

A product was priced at $250 and now sells for $190.

% Change = [(190 − 250) / 250] × 100
         = [−60 / 250] × 100
         = −24%

The price fell 24%. State this as "a 24% decrease" by dropping the negative sign and naming the direction.

Step 3: The Most Common Mistake, Wrong Denominator

The denominator must always be the original (old) value, never the new value. Getting this wrong changes the result substantially.

Correct: Stock moves from $100 to $150.

% Change = [(150 − 100) / 100] × 100 = 50%

Incorrect (divides by new value):

(150 − 100) / 150 × 100 = 33.3%   ← Wrong

The right answer is 50%. Dividing by the new value calculates something else entirely, the share of the new price the increase represents, and it shouldn't be called percentage change.

Step 4: The Symmetry Trap, Going Up Then Down

A 50% gain followed by a 50% loss doesn't return you to your starting point.

$100 + 50% = $150
$150 − 50% = $75

You land at $75, not $100. This asymmetry matters for investors: a 50% portfolio loss requires a 100% gain just to break even. Percentage changes multiply rather than add, so never average them across periods. Always compare the final value to the true original value using the formula above.

Step 5: Percentage Change vs Percentage Points

These two terms measure different things and get confused constantly in financial journalism.

Scenario: a central bank raises the benchmark interest rate from 3% to 5%.

The percentage point change is 5% − 3% = 2 percentage points (pp), the arithmetic difference between two percentages. The percentage change is [(5 − 3) / 3] × 100 = 66.7%, how much the rate itself moved relative to its starting level.

Both statements hold true. "The rate rose by 2 pp" and "the rate rose by 66.7%" describe the same event from different angles, and which one you reach for depends on what you want to emphasise. For bond markets and monetary policy, Basis Points (1 bp = 0.01 percentage point) are the standard unit of measurement.

Step 6: Business Applications

Quarter-over-quarter revenue growth: revenue rises from $1.2 million in Q1 to $1.35 million in Q2.

QoQ Growth = [(1,350,000 − 1,200,000) / 1,200,000] × 100 = 12.5%

Investment return: you invest ₹1,00,000 and the portfolio grows to ₹1,18,000 after one year.

Return = [(1,18,000 − 1,00,000) / 1,00,000] × 100 = 18%

For multi-year investment returns, the ROI Calculator applies compound growth logic instead of simple percentage change.

Key Reminders

The denominator is always the original value, no exceptions, and that's the single most important rule here. A negative result simply means a decrease; the sign tells the whole story with no special handling needed. Percentage change isn't the same as percentage points, so be explicit about which one you mean when comparing two percentages. Don't add percentage changes together: a 10% gain one year and a 10% gain the next isn't 20% total growth, it's 21% [(1.10 × 1.10 − 1) × 100]. And negative base values distort results, so skip percentage change when the old value is zero or negative and use absolute change instead.

For quick calculations in any of these scenarios, the Percentage Change Calculator handles both increases and decreases and flags when a negative base may make the result unreliable. For broader percentage work, finding what percentage one number is of another, the Percentage Calculator covers the full range of common percentage problems.

Frequently Asked Questions

What is the formula for percentage increase?
The formula reads: % Increase = [(New Value - Old Value) / Old Value] × 100, and the result comes out positive. Revenue growing from $80,000 to $92,000 gives [(92,000 - 80,000) / 80,000] × 100 = 15%. Divide by the original (old) value, not the new one, and a positive result confirms an increase happened.
How do I calculate a percentage decrease?
It's the same formula as percentage change, % Change = [(New - Old) / Old] × 100, just with a negative result because the new value is lower. A product price dropping from $250 to $190 gives [(190 - 250) / 250] × 100 = -24%. The negative sign signals a decrease of 24%, and you can state it as 'a 24% decrease' by dropping the sign and naming the direction explicitly.
What is the difference between percentage change and percentage points?
Percentage change measures the relative shift between two values. Percentage points measure an absolute arithmetic difference between two percentages. An interest rate rising from 3% to 5% moves 2 pp (5 minus 3), but the percentage change is [(5 − 3) / 3] × 100 = 66.7%. Both descriptions are accurate, they just measure different things, and mixing the two up is one of the most common errors in financial and economic reporting.
Can percentage change be negative?
It can, whenever the new value comes in lower than the original. A result of -20% means the value fell 20% from its starting point. Negative percentage change shows up constantly in falling stock prices, declining sales, or shrinking populations, and the formula handles it automatically with no special treatment needed.
How do I calculate percentage change in Excel?
Put the old value in cell A2 and the new value in B2, then enter =(B2-A2)/A2 and format the cell as a percentage. Excel displays the result as a percentage automatically. Use =(B2-A2)/A2*100 instead if you want to see the raw number, and keep the old value in the denominator to avoid the common mistake of dividing by the new value.
How do I calculate year-over-year (YoY) growth?
Year-over-year growth applies the standard percentage change formula with last year's figure as the old value and this year's figure as the new value: YoY Growth = [(This Year - Last Year) / Last Year] × 100. Annual revenue of $1.2 million last year and $1.35 million this year gives [(1.35 - 1.2) / 1.2] × 100 = 12.5%. YoY comparisons strip out the seasonal distortions that quarter-over-quarter figures can introduce.
How is percentage change used for investment returns?
For a single-period investment, percentage change equals the simple return: % Return = [(Ending Value - Beginning Value) / Beginning Value] × 100. Invest ₹1,00,000 and watch it grow to ₹1,18,000, and your return is 18%. For multi-period returns, use the [ROI Calculator](/roi-calculator/) or compound annual growth rate (CAGR) instead of averaging individual percentage changes, since percentage changes don't add up across periods the way you'd expect.
What happens when you compound percentage changes?
Compounding means multiplying successive multipliers rather than adding the percentages. A 10% increase followed by a 10% decrease doesn't bring you back to the original value. It leaves you at 99% of the start ($100 to $110 to $99). This asymmetry matters in investing, since a 50% loss requires a 100% gain just to break even. Use the actual start and end values with the [Percentage Change Calculator](/percentage-change-calculator/) rather than summing percentages for multi-step changes.
How do I calculate percentage change when one value is negative?
When the old value is negative, the formula can spit out results that are hard to interpret. Moving from a loss of -$100 to a profit of +$50 gives [(50 − (−100)) / |−100|] × 100 = 150%, a figure that doesn't mean much on its own. Most financial analysts skip percentage change when the base value is negative and use absolute change instead, or switch to a different benchmark entirely. The [Percentage Calculator](/percentage-calculator/) flags when a negative base might distort the result.
How is percentage change used in business KPIs?
Businesses track percentage change across dozens of KPIs: revenue growth, gross margin movement, customer acquisition cost shifts, churn rate changes. A consistent formula keeps things comparable, always using the prior period as the denominator. Quarterly reporting uses quarter-over-quarter (QoQ) change with the previous quarter as the base, while annual benchmarking sticks to year-over-year (YoY). Running these calculations through a tool like the [Percentage Change Calculator](/percentage-change-calculator/) cuts down on manual errors.
What is CAGR and how does it differ from annual percentage change?
Compound Annual Growth Rate (CAGR) measures the steady annual rate at which an investment or metric would have grown from start to finish over multiple years, smoothing out year-to-year volatility. Annual percentage change just compares one year to the previous one. Revenue growing 5%, 20%, and 8% across three consecutive years gives those three annual percentage changes directly, but the CAGR over that period comes out to approximately 10.7%. CAGR works better for comparing growth rates across investments with different time horizons.
How do I calculate percentage change for population figures?
Population percentage change uses the same formula: % Change = [(New Population - Old Population) / Old Population] × 100. A city's population growing from 8,50,000 to 9,12,000 over a decade gives [(9,12,000 - 8,50,000) / 8,50,000] × 100 = 7.3%. For country-level figures spanning many years, demographers tend to prefer CAGR to express average annual growth, since total percentage change alone can obscure the actual pace of growth.

Related Articles

HOW TO

How to Calculate Tip at a Restaurant

HOW TO

How to Calculate ROI

GUIDE

Small Business Finance Guide

BEST OF

Best Free Business Calculators Online 2026

GUIDE

Text Analysis Calculators: Size, Speed & Word Count