The real problem: why percentages confuse people (and why it matters)
People report percentage changes every day: sale prices, conversion-rate lifts from A/B tests, or shifts in public opinion from a survey. But two very different concepts are often mixed up—percent change and percentage points—and the confusion gives misleading headlines, wrong interpretations, and bad product decisions.
This article clarifies those concepts with practical formulas, three concrete examples (price, conversion rate, survey), a compact comparison table, a step-by-step workflow you can follow before publishing numbers, rounding cautions, common mistakes, and a short FAQ. If you want to experiment interactively with calculations, try the Percentage Calculator. For clean output display and rounding, use Number Formatting Tool. I describe what each tool can and cannot do below.
Plain-language formulas and quick rules
Before jumping into examples, learn two plain formulas you can say out loud without algebra:
- Percent change (relative change): “How much bigger or smaller is the new value compared to the old one, as a percentage of the old value?” — Calculate: (new − old) / old × 100%.
- Percentage point difference (absolute change of a rate): “How many points did the rate itself move?” — Calculate: new rate − old rate (express both as percentages, then subtract).
Short rules of thumb:
- If you divide by the old value to express the change, you’re calculating a percent change (relative).
- If you simply subtract two percentages, you get percentage points (absolute).
- Never describe a change in percentage points as a percent unless you explicitly compute the relative change too.
Price example: sale prices and percent change
Scenario: a jacket was $120 last month and is $90 on sale this week. Which statement is correct?
- “The price dropped by 25%” — True, because (90 − 120) / 120 = −0.25 = −25%.
- “The price dropped by 30 percentage points” — Incorrect; percentage points apply to rates or shares, not to a price in dollars.
Concrete calculation (you can paste these numbers into Percentage Calculator):
old_price = 120
new_price = 90
percent_change = (new_price - old_price) / old_price * 100 # = -25%
If you format the output with Number Formatting Tool, you might display “−25.0%” or “25% off” depending on style conventions. The formatting tool formats numbers and rounds consistently—it does not determine which metric (percent change vs percentage points) is appropriate for your context.
Conversion-rate example: A/B test and percentage points
Scenario: Version A of a signup flow converts at 2.0% and Version B converts at 2.5%. What should you report?
- Absolute difference (percentage points): 2.5% − 2.0% = 0.5 percentage points.
- Relative percent change: (2.5 − 2.0) / 2.0 × 100% = 25% increase in the conversion rate.
Both statements are useful but communicate different things: “0.5 percentage points” tells product teams how much the actual share changed; “25% lift” emphasizes relative performance. Use both when possible.
conv_A = 0.020 # 2.0 expressed as fraction
conv_B = 0.025 # 2.5 expressed as fraction
pp_diff = (conv_B - conv_A) * 100 # = 0.5 percentage points
relative = (conv_B - conv_A) / conv_A * 100 # = 25%
Survey example: interpreting shifts in support
Suppose a policy is supported by 40% of respondents last month and 44% this month. What changed?
- Percentage-point change = 44% − 40% = 4 percentage points.
- Relative percent change = (44 − 40) / 40 × 100% = 10% increase in support.
Which is clearer depends on audience. Journalists often report percentage points to avoid exaggeration; marketing teams prefer percent because it sounds bigger. If the survey sample is small, always include confidence intervals or sample size—more on that below.
Comparison table: percent change vs percentage points
Here’s a compact table you can copy into notes. It mirrors the simple Markdown idea (header row with separators) but is rendered as HTML for your site:
| Measure | How to compute (plain words) | Example | When to use |
|---|---|---|---|
| Percent change (relative) | Subtract, divide by the old value, multiply by 100 | Price $120 → $90 = −25% | Comparing magnitudes relative to baseline |
| Percentage points (absolute) | Subtract two percentages directly | Conv. 2.0% → 2.5% = 0.5 percentage points | Comparing rates, market shares, survey percentages |
Rounding cautions, numerical precision, and common mistakes
Rounding cautions
Round only at the end of a calculation. If you round intermediate values you can accumulate bias. Decide on consistent significant digits (e.g., two decimals for percentages) and stick to them. For small probabilities (like a 0.01 to 0.02 change), use more decimals or express both percentage points and relative percent to avoid exaggeration.
When reporting percent changes from zero or near-zero baselines, be explicit: percent change from 0 → 1 is undefined in relative terms; describe it as “increase of 1 point” or “from zero to X” instead of a percent.
Common mistakes
- Mixing up percent and percentage points in headlines and text.
- Reporting a small absolute increase as a huge percent lift without giving the baseline (e.g., 1 → 2 is 100% but only 1 point).
- Rounding too aggressively, which can turn a statistically insignificant lift into a misleading number.
- Comparing relative changes across different baselines without normalization (e.g., comparing a 50% rise on $10 vs $1,000 is misleading).
- Ignoring sample size and uncertainty—especially in surveys or A/B tests.
Step-by-step workflow to compare percentage changes
- Identify the metric type: Is it a raw number (price, count) or a rate/share (conversion, percent support)?
- Choose the right measure: use percent change for raw values when you care about relative magnitude; use percentage points for rates and shares.
- Compute both if useful: give readers context with both absolute and relative numbers.
- Check sample sizes or denominators (sales volume, number of survey respondents, impressions).
- Format consistently with Number Formatting Tool so rounding is clear.
- State any caveats: sample size, baseline near zero, seasonality, or other confounders.
Quick pre-publication checklist
- Have I used percentage points for rates and percent for relative changes?
- Did I compute values without rounding intermediate steps?
- Are denominators and sample sizes visible to the reader?
- Did I include both absolute and relative numbers when helpful?
- Have I avoided ambiguous phrasing like “percent points” or “percentage percent”?
Limitations, privacy, and the small tools you might use
Small online tools are convenient but come with limits. The Percentage Calculator is useful for computing percent changes, reverse percentage problems (what was the original price?), and quick conversions between absolute and relative differences. It does not replace statistical testing—if you need confidence intervals for survey or A/B-test lifts, use proper statistical tools or consult a statistician.
The Number Formatting Tool helps present numbers cleanly: rounding, locale-aware separators, and consistent decimal places. It does not infer the meaning of numbers or determine whether percent change or percentage points are correct.
Privacy note: avoid pasting personally identifiable information, raw database exports, or private financial records into browser-based public tools unless you know they run locally or explicitly promise no collection. If you must work with sensitive data, do the math offline or on vetted internal tools.
FAQ
Q: When should I report both percentage points and percent change?
A: When the audience needs context. For example, in conversion metrics show “2.0% → 2.5% (0.5 percentage points, 25% relative increase)” so readers understand both the absolute impact and relative lift.
Q: How do I handle a percent change from zero?
A: Percent change from zero is undefined (division by zero). Report absolute change and, if useful, say “increased from 0 to N” or compute percent change from the closest non-zero baseline if justified and transparent.
Q: My headline needs to be short—should I use percent or percentage points?
A: Prefer accuracy over clickability. If the metric is a rate, use percentage points for clarity. If you must use a relative percent, include the baseline in the first paragraph.
Sources
Editorial note: This guide is an educational overview. Confirm the output against the documentation and workflow that apply to your project.