Stocks face earnings test with S&P 500 on pace for worst performance in a shutdown since 1990
Explain the financial context and show how to compute related percentage changes with clear examples.
Measure how much a value has grown as a percentage. Ideal for investment returns, salary raises, business performance, and before-and-after comparisons.
Calculate Growth & Returns — Find Percentage Increases Instantly
Formula:
Percentage Increase = ((New − Original) ÷ Original) × 100Percentage increase measures how much a value grows relative to its starting point. It normalizes the difference so growth is comparable across different scales and contexts. Whether tracking salary raises, investment gains, or business metrics, percentage increase provides a standardized way to evaluate growth.
Unlike absolute change (raw difference), percentage increase accounts for scale. A $10 increase on $100 is dramatic (10%), but the same $10 on $1,000 is minimal (1%). Percentage increase makes these comparisons meaningful and fair.
Percentage Increase = ((New − Original) ÷ Original) × 100
Key Components: Numerator = absolute change | Denominator = baseline for comparison | Multiply by 100 = convert to percentage scale
For a general increase or decrease view without distinguishing direction, use the Percentage Change Calculator.
Let us walk through a realistic scenario: An employee receives a salary increase from $48,000 to $57,600. What is the percentage increase?
Step 1: Identify your values
Step 2: Calculate the absolute increase
$57,600 − $48,000 = $9,600
Step 3: Divide by the original salary
$9,600 ÷ $48,000 = 0.20
Step 4: Convert to percentage
0.20 × 100 = 20%
Result: The salary increased by 20%.
Calculate percentage increases instantly in spreadsheets with these methods:
Basic Formula:
=(B2-A2)/A2
Then format the cell as Percentage from the Format menu.
Explicit Percentage Formula:
=(B2-A2)/A2*100
Returns the result directly as a percentage number (e.g., 20, not 0.20).
Safe Formula (Prevents Division Errors):
=IF(A2=0,"", (B2-A2)/A2)
Avoids the #DIV/0! error if A2 is empty or zero.
Pro Tip: Copy these formulas down entire columns for batch calculations across multiple rows or time periods.
When values change over multiple periods, percentage changes compound—they multiply, not add. Ignoring compounding leads to significant underestimation of growth.
| Scenario | Calculation | Overall Result | Common Mistake |
|---|---|---|---|
| +10% then +5% | 1.10 × 1.05 | +15.5% | +15% (if added) |
| +20% then −10% | 1.20 × 0.90 | +8% | +10% (if added) |
| +50% then +50% | 1.50 × 1.50 | +125% | +100% (if added) |
The rule: Multiply growth factors (1 + rate) for each period, then subtract 1 and multiply by 100 to get the overall percentage increase.
Formula: Overall = (1 + r₁) × (1 + r₂) × ... − 1, then ×100
These terms are often confused, but they mean very different things. Understanding the difference is crucial for correct interpretation of data.
| Metric | Definition | Example |
|---|---|---|
| Percentage Increase | Relative change from original | 4% to 5% = +25% increase ((5−4)÷4) |
| Percentage Points | Absolute difference between percentages | 4% to 5% = +1 pp (5−4) |
An election poll showing a candidate at 45% rising to 50% represents both:
News outlets often confuse these terms. Be careful when reading reports about changes in rates, percentages, or polls.
Track year-over-year salary increases to ensure raises keep pace with inflation and market trends. A 3% raise when inflation is 4% represents a real loss of purchasing power.
Calculate stock returns, portfolio performance, and investment gains. Investors use percentage increase to compare performance across different investment sizes and time periods fairly.
Measure revenue growth, customer acquisition, market share expansion, and operational improvements. Boards and shareholders expect quarterly and annual percentage increases.
Track conversion rate improvements, website traffic growth, click-through rate increases, and engagement metrics over time periods.
Monitor inflation rates, GDP growth, unemployment changes, and other macroeconomic indicators expressed as percentage increases or decreases.
Measure productivity gains, defect rate reductions, efficiency improvements, and throughput increases in manufacturing and service delivery.
Relative change provides context that raw numbers cannot. Consider this scenario:
Scenario: Two companies report revenue increases.
Company A is growing faster, even though Company B added more absolute revenue. Percentage increase reveals the true growth trajectory.
For symmetric comparisons between two independent values without a baseline concept, use the Percentage Difference Calculator.
Sometimes you know the original value and the percentage increase, but need the new value. Use this formula:
Formula:
New Value = Original × (1 + Percentage Increase ÷ 100)
Your savings account has $10,000 and earns a 5% return. What is the new balance?
New Value = $10,000 × (1 + 5 ÷ 100) = $10,000 × 1.05 = $10,500
A critical insight: A 50% increase does not require a 50% decrease to return to the starting point. This asymmetry has major implications in finance and investing.
| Scenario | Increase Required | Decrease Required to Return |
|---|---|---|
| Starting at 100 | +50% (reach 150) | −33.3% (back to 100) |
| Starting at 100 | +100% (reach 200) | −50% (back to 100) |
This is why market crashes hurt more than rallies feel good, even at equal percentage magnitudes.
Always divide by the original value, not the new value. Using the new value as the denominator gives the percentage decrease needed to return, not the increase percentage.
Multiple percentage changes multiply. A +10% followed by +5% is not +15%; it is +15.5%. The difference grows with larger percentages.
A change from 4% to 5% is +1 percentage point, not +1% increase. The increase is actually +25% ((5−4)÷4×100).
Ensure both values are in identical units. Percentage increase of kilometers to miles is meaningless without conversion.
Division by zero is undefined. The original value must be non-zero for a valid percentage increase calculation.
Salary: $50,000 to $60,000
Result: 20% increase
Stock price: $120 to $150
Result: 25% increase
Website traffic: 1,000 to 1,500 visitors
Result: 50% increase
Revenue: $80,000 to $100,000
Result: 25% increase
Big jump: 40 to 100
Result: 150% increase
Market cap: $1M to $2.5M
Result: 150% increase
Negative base: −100 to −50
Result: 50% increase relative to magnitude
Decimal increase: 2.5 to 3.75
Result: 50% increase
Subtract the original value from the new value, divide the result by the original value, then multiply by 100. The formula is: ((New − Original) ÷ Original) × 100. For example, if a value goes from 50 to 75: ((75 − 50) ÷ 50) × 100 = 50%.
A negative percentage increase actually means a decrease. The value has gone down, not up. For example, a value of 100 decreasing to 80 shows a negative 20% increase, which is the same as a 20% decrease. Use the Percentage Decrease calculator for clarity on declining values.
Division by zero is mathematically undefined. The original value must be a non-zero number to calculate a meaningful percentage. If the original value is zero, there is no baseline to compare against.
Yes, it does. The calculator uses the magnitude of the original value in the denominator, so the percentage size remains comparable. For example, −100 to −50 represents a +50% increase in magnitude. Interpret carefully based on your context.
Use the formula =(B2−A2)/A2 and format the result as a percentage. For a safer version that avoids #DIV/0! errors, use =IF(A2=0,"", (B2−A2)/A2). Copy this down for multiple rows.
Percentage increase is relative change, while percentage points are absolute differences between two percentages. Example: If a rate changes from 4% to 5%, that is +1 percentage point but a +25% relative increase ((5−4)÷4×100).
Absolutely. A value can more than double, triple, or increase by any multiple. For instance, if an investment grows from $100 to $500, that is a 400% increase. Large percentage increases are common in startup valuations, stock rallies, and rapid growth scenarios.
Multiply the growth factors for each period, not add the percentages. Example: +10% then +5% is 1.10 × 1.05 = 1.155, or +15.5% overall. Adding would incorrectly give +15%, missing the compounding effect.
The inverse is percentage decrease. If a value increases by X%, the reverse decrease percentage is different. For example, a 50% increase (100 to 150) requires a 33.3% decrease (150 to 100) to return to the starting point. This asymmetry is important in financial analysis.
Use the formula: New Value = Original Value × (1 + Percentage Increase ÷ 100). For example, a 12% increase on 250 is: 250 × (1 + 12 ÷ 100) = 250 × 1.12 = 280.
Mastered percentage increase calculations? Expand your analytical toolkit with these complementary calculators:
Explore related tools:
Each calculator includes step-by-step guides, realistic examples, and spreadsheet formulas for maximum utility.
Quickly find X% of any number in seconds.
Find percentage drops quickly and easily.
Calculate percentage increase or decrease instantly.
Easily calculate final price and savings.
Compare two values and find their percentage difference.
Explore all percentage tools in one place — find, compare, and calculate easily.
Explore other tools to compare percentages, calculate discounts, and track your savings faster.
Explain the financial context and show how to compute related percentage changes with clear examples.
Explain the financial context and show how to compute related percentage changes with clear examples.
4 Old Navy Items To Skip Buying This Winter, According to a Shopping Expert AOL.com