How To Calculate Percentage Between Two Values In Excel

How to Calculate Percentage Between Two Values in Excel

Enter two values, pick the percentage method, and get an instant result with a visual chart and ready-to-use Excel formula.

Result will appear here.
Tip: choose the calculation type that matches your Excel goal.

Complete Excel Guide: How to Calculate Percentage Between Two Values

Calculating percentage between two values in Excel is one of the most common spreadsheet tasks in business, education, finance, operations, and reporting. Whether you are measuring sales growth, conversion rates, budget variance, enrollment trends, or inflation changes, percentages help you compare values in a way that is easy to understand and communicate.

If you have ever asked, “How do I calculate percentage increase in Excel?” or “How do I find what percent one number is of another?” this guide gives you a precise, practical answer. You will learn exact formulas, when to use each method, how to avoid common mistakes, and how to apply percentage calculations to real datasets.

Why this matters in real reporting

Raw numbers can be misleading without context. A change from 50 to 75 and a change from 5,000 to 5,025 both involve an increase of 25 units, but the percentage meaning is completely different. In the first case, the increase is 50%. In the second case, it is only 0.5%. Excel percentage formulas solve this by normalizing differences against a baseline.

  • Finance teams use percentages for month-over-month and year-over-year growth.
  • Marketing teams use percentages for click-through rates and conversion rates.
  • HR teams use percentages for turnover and headcount changes.
  • Analysts use percentages to compare values across categories with different scales.

The 3 core Excel percentage formulas you should know

  1. Percent Change (new versus old):
    Excel formula: =(B2-A2)/A2
    Use this when you want increase or decrease relative to the starting value.
  2. Part of Whole (what percent one value is of another):
    Excel formula: =A2/B2
    Use this for ratios like completion rate, share of total, or contribution percentage.
  3. Percent Difference (A versus B, symmetric comparison):
    Excel formula: =ABS(A2-B2)/AVERAGE(A2,B2)
    Use this when neither value should be treated as a baseline and you want a neutral comparison.

After entering any of these formulas, apply Excel’s Percentage format from the Home tab so results display as values like 12.50% instead of 0.125.

Step-by-step: Percentage increase or decrease in Excel

Assume your old value is in cell A2 and your new value is in B2.

  1. In C2, type =(B2-A2)/A2.
  2. Press Enter.
  3. Select C2, then click Percent Style in Excel.
  4. Use Increase Decimal or Decrease Decimal to control precision.

If B2 is larger than A2, the result is positive (increase). If B2 is smaller, the result is negative (decrease). For example, from 800 to 1,000 gives 25%, while from 1,000 to 800 gives -20%.

Important: The denominator in percent change is the original value. If you divide by the new value, you will get a different metric and may misreport performance.

Step-by-step: What percent is one value of another?

This is often used for pass rates, budget utilization, and contribution percentages. If actual completed tasks are in A2 and total tasks are in B2:

  1. In C2, type =A2/B2.
  2. Press Enter.
  3. Format C2 as Percentage.

Example: 45 completed out of 60 total equals 75%. This method is simple and very common in KPI dashboards.

Step-by-step: Percent difference between two values

When comparing two values and neither is naturally “old” or “new,” percent difference is often more appropriate.

  1. In C2, type =ABS(A2-B2)/AVERAGE(A2,B2).
  2. Press Enter and apply Percentage format.

This formula treats both values equally and returns an always-positive percentage distance between them.

Real data example 1: CPI inflation style percentage change

The U.S. Bureau of Labor Statistics publishes Consumer Price Index (CPI) data, commonly used for inflation analysis. If you place annual average CPI values in Excel, the percent change formula quickly reveals inflation rates between years. Source: BLS CPI Data (.gov).

Year CPI-U Annual Average Excel Formula for Change vs Prior Year Calculated Percent Change
2021 270.970 Baseline year n/a
2022 292.655 =(292.655-270.970)/270.970 8.00%
2023 305.349 =(305.349-292.655)/292.655 4.34%

This kind of setup is exactly how analysts build year-over-year percentage trend sheets in Excel.

Real data example 2: U.S. population growth using Census values

The U.S. Census Bureau publishes official decennial population totals. This is excellent data for practicing percentage growth formulas in Excel. Source: U.S. Census Decennial Data (.gov).

Period Starting Population Ending Population Excel Formula Decade Growth
2000 to 2010 281,421,906 308,745,538 =(308745538-281421906)/281421906 9.71%
2010 to 2020 308,745,538 331,449,281 =(331449281-308745538)/308745538 7.35%

Even with very large numbers, Excel handles this cleanly. The key is using correct cell references and choosing the right denominator.

Handling tricky edge cases in Excel percentage formulas

  • Division by zero: If your denominator is zero, Excel returns #DIV/0!. Use =IFERROR((B2-A2)/A2,"") or a custom fallback value.
  • Negative baselines: Percent change with negative starting values can be mathematically valid but can confuse stakeholders. Add a note in your report explaining interpretation.
  • Blank cells: Use checks like =IF(OR(A2="",B2=""),"", (B2-A2)/A2) to keep sheets clean.
  • Text instead of numbers: If imported CSV values are text, convert using VALUE() or Data Text to Columns.

How to scale these formulas across large datasets

In real workbooks, you usually calculate percentages across hundreds or thousands of rows. Here are best practices:

  1. Convert your data range into an Excel Table (Ctrl+T) for structured references.
  2. Use one correct formula in the first row and let Excel auto-fill the table column.
  3. Name key columns clearly: Old Value, New Value, Percent Change.
  4. Apply consistent percentage formatting and decimal places.
  5. Use conditional formatting to highlight large increases or decreases.

If you need institution-grade documentation or data literacy resources, this NCES portal is useful for official education statistics workflows: National Center for Education Statistics (.gov).

Common mistakes that cause wrong percentage results

  • Using the new value as denominator when calculating percent change from old to new.
  • Formatting first, then typing whole-number percentages incorrectly (for example typing 25 for 25% rather than 0.25 in a raw fraction context).
  • Mixing percentage points and percent change. Moving from 20% to 25% is a 5 percentage point increase, but a 25% relative increase.
  • Rounding too early in intermediate steps, which can skew totals and charts.
  • Copying formulas with incorrect absolute references such as $A$2 when relative references are required.

Advanced formulas for power users

If you build recurring reports, advanced formulas can make your workbook cleaner and safer.

  • LET function: =LET(old,A2,new,B2,IFERROR((new-old)/old,"")) improves readability.
  • LAMBDA custom function: Create a reusable percent change function without VBA.
  • Dynamic arrays: Spill percentage results across entire columns in modern Excel.
  • Power Query prep: Clean nulls, text, and malformed numbers before formulas run.

These methods reduce errors and make the workbook easier for other users to audit.

Quick formula cheat sheet

  • Percent change: =(New-Old)/Old
  • Percent increase only: =IF(New>Old,(New-Old)/Old,0)
  • Percent decrease only: =IF(New
  • What percent of whole: =Part/Whole
  • Percent difference: =ABS(A-B)/AVERAGE(A,B)
  • Error safe version: =IFERROR(Formula,0)

When in doubt, identify your denominator first. The denominator defines what your percentage means.

Final takeaway

To calculate percentage between two values in Excel correctly, start by selecting the right metric:

  • Use percent change for before-and-after movement.
  • Use part-of-whole when one value is a share of a total.
  • Use percent difference for neutral comparison between two values.

Then apply clean formulas, percentage formatting, and validation checks. This process gives you trustworthy analysis, easier dashboards, and clearer communication with stakeholders.

Leave a Reply

Your email address will not be published. Required fields are marked *