Percentage Difference Calculator

Enter any two numbers to instantly calculate the percentage difference between them. No direction, no before or after — just the symmetric difference. Free, fast, no signup required.

First number to compare
Second number to compare
Recent Calculations
Click any record to fill it back into the calculator

What Is Percentage Difference?

A percentage difference measures how far apart two values are relative to their average, expressed as a percentage. Unlike percentage change — which requires a clear "before" and "after" — percentage difference treats both values equally. Neither value is the reference point. The result is always the same no matter which number you enter first, making it ideal for comparing two things that exist simultaneously rather than one thing at two points in time.

For example, if Store A sells a product for $50 and Store B sells the same product for $80, neither price is the "original." You want to know how to calculate the percentage difference between two figures symmetrically — and the answer is 46.15%, using the average of $50 and $80 as the base. This is different from asking how much $50 changed to become $80, which would be a 60% increase (percentage change). Whether you need to calculate difference percentage between two numbers for a science experiment, how do you calculate the percentage difference between two numbers for a business report, or how to calculate the percentage of difference between two numbers for a statistics assignment — the formula and approach are identical.

Understanding the percentage difference calculation is useful in science (comparing experimental values), business (benchmarking two competitors), statistics (measuring data spread), and everyday comparisons where no single value is the baseline. This percentage difference calculator gives you an instant, accurate result for any two numbers — positive, negative, or decimal.

Percentage Difference vs. Percentage Change — Key Distinction

Percentage Difference

Compares two values with no direction. Neither is the original. Uses the average as the base. Result is always positive.

|V1 − V2| / avg(V1,V2) × 100

50 vs 80 → 46.15% (same both ways)

Percentage Change

Compares a value before and after. Has a clear starting point. Uses the original value as the base. Can be positive or negative.

(New − Old) / Old × 100

50 → 80 = +60% | 80 → 50 = −37.5%

How to Calculate Percentage Difference Between Two Numbers

The percentage difference formula uses the absolute difference between the two values divided by their average. This symmetric approach ensures the result is the same regardless of which value you call V1 or V2.

Percentage Difference = |V1 − V2| ÷ ((V1 + V2) ÷ 2) × 100

Or equivalently:
Percentage Difference = (|V1 − V2| ÷ Average) × 100

Step-by-Step Example

To calculate percentage difference between two numbers, say 50 and 80:

Step 1: Find the absolute difference. |50 − 80| = 30.

Step 2: Find the average. (50 + 80) ÷ 2 = 65.

Step 3: Divide and multiply. (30 ÷ 65) × 100 = 46.15%.

Notice: if you swap the inputs (80 and 50), the result is still 46.15%. This symmetry is what makes percentage difference useful for comparing two equal-status values.

Why use the average as the base? If you used just one value as the denominator, the result would change depending on which number you put first. Using the average eliminates this asymmetry and gives a single definitive answer. This is the standard formula used in science, statistics, and most analytical contexts when calculating the difference in percentage between two figures without a natural baseline.

How to Calculate Percentage Difference in Excel

To calculate percentage difference in Excel, put your two values in cells A1 and B1. In cell C1, enter:

As a number: =ABS(A1-B1)/((A1+B1)/2)*100

As a formatted %: =ABS(A1-B1)/((A1+B1)/2) then format as percentage

Simplified version: =ABS(A1-B1)/AVERAGE(A1,B1)*100

The ABS() function ensures the result is always positive. Without it, if B1 is larger than A1, the formula returns a negative number — which is not meaningful for percentage difference. The AVERAGE() version is slightly more readable and gives the same result. Both formulas work identically in Google Sheets for calculating percentage difference in Excel between two numbers.

How to Calculate the Percentage Difference Between Two Figures in a Spreadsheet Column

To apply the percentage difference calculation across multiple rows, keep the formula in one column and drag it down. For a running comparison of each row against the row above (useful for tracking how values change row by row), use: =ABS(B2-B1)/((B2+B1)/2)*100 starting in row 2. This calculates the difference of percentage between consecutive values — handy for financial data, scientific measurements, or weekly tracking tables.

Percentage Difference Examples — Click to Calculate

Click any example to instantly see the full percentage difference calculation in the calculator above.

50 vs 80
46.15%
Difference = 30, Avg = 65
100 vs 120
18.18%
Difference = 20, Avg = 110
200 vs 150
28.57%
Difference = 50, Avg = 175
1,000 vs 750
28.57%
Difference = 250, Avg = 875
40 vs 60
40.00%
Difference = 20, Avg = 50
85 vs 100
16.22%
Difference = 15, Avg = 92.5

Real-World Percentage Difference Scenarios

Price comparison: Product A costs $45, Product B costs $63. To calculate the difference in percentage between two numbers: |45 − 63| ÷ ((45+63)÷2) × 100 = 18 ÷ 54 × 100 = 33.3%. Neither price is the baseline — this is a symmetric comparison of two current prices.

Scientific measurement: Two lab instruments measure the same sample as 98.4 and 101.6 units. The percentage difference between two figures is |98.4 − 101.6| ÷ ((98.4+101.6)÷2) × 100 = 3.2 ÷ 100 × 100 = 3.2%. This is the standard way to report instrument discrepancy in scientific contexts.

Salary benchmarking: Employee A earns $72,000 and Employee B earns $88,000. The percentage difference calculation: |72,000 − 88,000| ÷ ((72,000+88,000)÷2) × 100 = 16,000 ÷ 80,000 × 100 = 20%. Neither salary is the reference — this measures the gap between two equally valid data points.

Percentage Difference Reference Table

Value 1Value 2% DifferenceNotes
1001000.00%Identical values
1001109.52%Small difference
10012018.18%Moderate difference
10015040.00%Significant difference
10020066.67%One value is double the other
100300100.00%One value is triple
508046.15%Common comparison scenario
7510028.57%25-unit gap on average base of 87.5

Frequently Asked Questions

How do you calculate percentage difference between two numbers?
Find the absolute difference between the two numbers, divide by their average, and multiply by 100. Formula: |V1 − V2| ÷ ((V1 + V2) ÷ 2) × 100. Example: 50 and 80 → |50 − 80| = 30, average = 65, percentage difference = 30 ÷ 65 × 100 = 46.15%. The result is the same regardless of which number you call V1 or V2.
How do you calculate percentage difference between two figures?
Subtract the smaller figure from the larger to get the absolute difference. Find the average of both figures. Divide the difference by the average, then multiply by 100. Example: figures are 120 and 80 → difference = 40, average = 100, percentage difference = 40 ÷ 100 × 100 = 40%. Use the calculator at the top of this page for instant results.
How do you calculate percentage difference in Excel?
With values in A1 and B1, use: =ABS(A1-B1)/((A1+B1)/2)*100 for the number, or =ABS(A1-B1)/AVERAGE(A1,B1) formatted as a percentage. The ABS() function ensures the result is always positive. This percentage difference calculator Excel formula works identically in Google Sheets. Drag down to apply to multiple rows of data.
What is the difference between percentage difference and percentage change?
Percentage change has a direction — it measures how much one value changed from an original starting point. Formula: (New − Old) ÷ Old × 100. Percentage difference is symmetric — neither value is the starting point, and the result is always positive. Formula: |V1 − V2| ÷ Average × 100. Use percentage change for before/after comparisons, and percentage difference for comparing two simultaneous values.
How do I calculate the percentage difference between two numbers in Excel between two cells?
If A1 = 75 and B1 = 100: use =ABS(A1-B1)/((A1+B1)/2)*100 in any other cell. Result: 28.57%. To apply across a column: put the formula in C1, then drag the fill handle down. For comparing each row to a fixed reference value (e.g., always compare to A1), use =ABS($A$1-B1)/(($A$1+B1)/2)*100 with the $ signs to lock A1.
How do you calculate the percentage of difference between two numbers?
This is the same as percentage difference: divide the absolute difference by the average of the two numbers, then multiply by 100. The phrase "percentage of difference" and "percentage difference" describe the same calculation. Formula: |A − B| ÷ ((A + B) ÷ 2) × 100. The result shows how large the gap is relative to the typical size of the two numbers.
Can percentage difference be more than 100%?
Yes. If one value is more than three times the other, the percentage difference exceeds 100%. For example, 10 and 40: |10 − 40| ÷ ((10+40)÷2) × 100 = 30 ÷ 25 × 100 = 120%. This is mathematically valid — it means the two values differ by more than their average, which happens when one is very much larger than the other.
How do I calculate percentage difference in Excel between two percentages?
Use the same formula — just enter the percentages as numbers (e.g., 45 for 45%, not 0.45). =ABS(A1-B1)/((A1+B1)/2)*100. For example, comparing 45% and 60%: =ABS(45-60)/((45+60)/2)*100 = 15÷52.5×100 = 28.57%. If your cells are already formatted as percentages (stored as 0.45), the formula still works — you just get a decimal result that you then format as a percentage.

Related Percentage Calculators

Need a different type of percentage calculation? Try one of our other free tools: