How to Calculate a Percentage Between Two Numbers in Excel
Use this premium calculator to test formulas instantly, then follow the expert guide below to master percentage formulas in Excel for reports, dashboards, and financial analysis.
Expert Guide: How to Calculate a Percentage Between Two Numbers in Excel
If you work with business reports, school data, budgeting sheets, marketing dashboards, or operations metrics, percentages are one of the fastest ways to explain change and performance. In Excel, percentage calculations are simple once you understand which formula fits your goal. Many users struggle because there is more than one valid percentage formula, and each one answers a different question.
In this guide, you will learn exactly how to calculate a percentage between two numbers in Excel, when to use each formula, and how to avoid common mistakes that can lead to wrong conclusions. You will also get practical examples you can copy into your worksheet right now.
Why percentage calculations matter in real work
Percentage calculations are central to how teams communicate impact. Finance teams use percent change to explain revenue movement. HR teams use percentages to report turnover rates. Sales teams use conversion percentages to evaluate campaigns. Education and public policy analysts use percentages to show progress and disparities across groups.
According to the U.S. Bureau of Labor Statistics Occupational Outlook Handbook, data-focused business roles continue to grow, and percentage analysis remains a daily task in jobs such as accountants, analysts, and budget professionals. See official references here: BLS Accountants and Auditors, BLS Financial Analysts, and U.S. Census digital use report.
The three Excel percentage formulas you need
Before typing formulas, define what you want to measure:
- Percent of total: How much is one number out of another number?
- Percent change: How much did a value increase or decrease from old to new?
- Percent difference: How far apart are two values relative to their average?
- Percent of total formula: =Part/Whole
- Percent change formula: =(New-Old)/Old
- Percent difference formula: =ABS(A-B)/AVERAGE(A,B)
After entering any of these formulas, format the result cell as Percentage. In Excel, select the cell, go to Home tab, and choose Percentage style. Then adjust decimal places to match your reporting standard.
Step by step: Calculate what percent one number is of another
Suppose cell A2 has 45 completed tasks and B2 has 60 total tasks. To calculate completion percentage:
- Click in C2.
- Type =A2/B2.
- Press Enter.
- Format C2 as Percentage.
Excel returns 75%. This is the most common ratio percentage and is used in progress tracking, conversion rates, and budget utilization.
Step by step: Calculate percent change between old and new values
Suppose A2 is old revenue ($80,000) and B2 is new revenue ($100,000). In C2:
- Type =(B2-A2)/A2.
- Press Enter.
- Apply Percentage format.
The result is 25%. If the new value is lower than old, the result becomes negative, which correctly represents a decrease.
Pro tip: If you only need the absolute magnitude of change (without direction), use =ABS((B2-A2)/A2). This is useful in tolerance checks and audit comparisons.
Step by step: Calculate percent difference between two numbers
Percent difference is different from percent change because it does not treat one value as old and the other as new. It compares two values symmetrically.
- Assume A2 = 90 and B2 = 100.
- In C2 type =ABS(A2-B2)/AVERAGE(A2,B2).
- Format as Percentage.
This is common in lab testing, procurement comparisons, and quality control where both numbers are peers.
Comparison table: Formula selection by use case
| Business Question | Excel Formula | When to Use | Example Result |
|---|---|---|---|
| What percent is completed? | =A2/B2 | Part versus whole reporting | 45/60 = 75% |
| How much did it grow? | =(B2-A2)/A2 | Old value to new value trend | 80,000 to 100,000 = 25% |
| How far apart are two values? | =ABS(A2-B2)/AVERAGE(A2,B2) | Symmetric comparison | 90 and 100 = 10.53% |
How to avoid divide-by-zero and bad data errors
Percentage formulas can fail if the denominator is zero or blank. In Excel, wrap formulas with IFERROR or a denominator check:
- =IF(B2=0,”N/A”,A2/B2) for percent of total
- =IF(A2=0,”N/A”,(B2-A2)/A2) for percent change
- =IFERROR(ABS(A2-B2)/AVERAGE(A2,B2),”N/A”) for percent difference
This keeps dashboards clean and prevents misleading infinite percentages.
Use ROUND for cleaner reporting
Most audiences do not need long decimals like 23.456789%. Wrap your formula with ROUND:
- =ROUND((B2-A2)/A2,4) then format as Percentage for two decimals
- =ROUND(A2/B2,4) for progress charts
Remember, Excel stores the raw value. Formatting and ROUND help display clean numbers consistently in board decks and client reports.
Real statistics table: Why spreadsheet percentage skills remain valuable
| Indicator (U.S.) | Recent Published Value | Source | Why It Matters for Excel Users |
|---|---|---|---|
| Accountants and auditors median annual pay | $79,880 | BLS OOH | Core role where percent variance and ratio analysis are daily tasks. |
| Financial analysts projected employment growth | 9% (faster than average) | BLS OOH | Growth analysis and performance percentages are central to analyst workflows. |
| U.S. households using computers | Above 90% | U.S. Census Bureau | Data literacy and spreadsheet communication are now widely expected. |
Advanced Excel tips for percentage workflows
- Convert ranges to tables: Press Ctrl+T so formulas auto-fill as new rows are added.
- Use absolute references: If total is in one fixed cell, use $B$1 style references.
- Build dynamic dashboards: Combine percentage formulas with PivotTables and slicers.
- Conditional formatting: Highlight negative percent changes in red and strong gains in green.
- Quality checks: Add a validation column that flags any denominator equal to zero.
Common mistakes and how to fix them
- Mistake: Dividing by new value instead of old in percent change.
Fix: Always use old value as denominator in growth calculations. - Mistake: Forgetting to format as Percentage.
Fix: Apply Percentage format or multiply by 100 only when needed for text output. - Mistake: Mixing percentage points and percent change.
Fix: If rate moves from 40% to 50%, that is +10 percentage points, not 10% change. - Mistake: Ignoring zero or blank cells.
Fix: Use IF, IFERROR, and data validation rules.
Quick template you can copy into Excel
Set up columns like this:
- Column A: Old Value
- Column B: New Value
- Column C: Percent Change formula =(B2-A2)/A2
- Column D: Percent of Total formula =A2/B2
- Column E: Percent Difference formula =ABS(A2-B2)/AVERAGE(A2,B2)
Fill formulas down, apply Percentage format, and add conditional formatting for quick interpretation.
Final takeaway
To calculate a percentage between two numbers in Excel correctly, start by defining the question, then choose the matching formula. If you want a ratio, use part divided by whole. If you want trend movement, use percent change with old value in the denominator. If you want neutral comparison, use percent difference.
Once these distinctions are clear, your spreadsheets become more accurate, your analysis becomes more credible, and your reporting becomes easier for stakeholders to trust. Use the calculator above anytime you want a quick check before applying formulas across a full Excel dataset.