How To Calculate Percentage Of 2 Numbers In Excel

Excel Percentage Calculator

Calculate the percentage between two numbers with precise Excel formulas

Calculation Results

0%
The percentage calculation result will appear here
Excel Formula:

Comprehensive Guide: How to Calculate Percentage of 2 Numbers in Excel

Calculating percentages between two numbers is one of the most fundamental yet powerful operations in Excel. Whether you’re analyzing financial data, tracking performance metrics, or conducting scientific research, understanding percentage calculations will significantly enhance your data analysis capabilities.

Understanding Percentage Basics

A percentage represents a fraction of 100. When we calculate the percentage between two numbers, we’re essentially determining what portion one number represents of another, expressed as a value out of 100.

The basic percentage formula is:

Percentage = (Part/Whole) × 100

4 Essential Percentage Calculations in Excel

1. Percentage Increase

Calculates how much a value has increased relative to its original value.

Formula: =((New Value - Original Value)/Original Value) × 100

Example: If sales increased from $50,000 to $75,000, the percentage increase is 50%.

2. Percentage Decrease

Calculates how much a value has decreased relative to its original value.

Formula: =((Original Value - New Value)/Original Value) × 100

Example: If website traffic dropped from 10,000 to 8,000 visitors, that’s a 20% decrease.

3. What Percentage Of

Determines what percentage one number is of another number.

Formula: =(Part/Total) × 100

Example: If 25 out of 200 employees are in marketing, marketing represents 12.5% of the workforce.

4. Percentage Difference

Calculates the difference between two values as a percentage of their average.

Formula: =ABS((Value1 - Value2)/((Value1 + Value2)/2)) × 100

Example: The percentage difference between $45 and $55 is 20%.

Step-by-Step Excel Implementation

  1. Enter your data: Input your numbers in two separate cells (e.g., A1 and B1)
  2. Select a blank cell: Choose where you want the percentage result to appear
  3. Enter the formula: Type the appropriate formula based on your calculation type
  4. Format as percentage: Select the result cell → Right-click → Format Cells → Percentage
  5. Adjust decimal places: Use the Increase/Decrease Decimal buttons in the Home tab

Advanced Percentage Techniques

Percentage of Total in Pivot Tables

Excel’s pivot tables can automatically calculate percentages of grand totals:

  1. Create your pivot table (Insert → PivotTable)
  2. Add your data fields to Rows and Values areas
  3. Right-click any value → Show Values As → % of Grand Total

Conditional Formatting with Percentages

Visualize percentage data with color scales:

  1. Select your percentage data range
  2. Home → Conditional Formatting → Color Scales
  3. Choose a 2-color or 3-color scale

Common Percentage Calculation Mistakes

Mistake Why It’s Wrong Correct Approach
Using simple division without multiplying by 100 Results in a decimal (0.25) instead of percentage (25%) Always multiply by 100 to convert to percentage
Swapping numerator and denominator Calculates the inverse relationship (e.g., 200% instead of 50%) Part always goes in numerator, Whole in denominator
Forgetting absolute references ($A$1) Formulas break when copied to other cells Use $ for fixed references in formulas
Not formatting cells as percentages Displays as decimals (0.75 instead of 75%) Apply percentage formatting to result cells

Real-World Applications of Percentage Calculations

Financial Analysis

Calculate profit margins, return on investment (ROI), and expense ratios. For example:

  • Profit Margin = (Net Profit/Revenue) × 100
  • ROI = ((Current Value – Original Value)/Original Value) × 100

Sales Performance

Track sales growth, market share, and conversion rates:

  • Sales Growth = ((Current Sales – Previous Sales)/Previous Sales) × 100
  • Market Share = (Company Sales/Industry Sales) × 100

Academic Grading

Calculate test scores and grade distributions:

  • Test Score = (Correct Answers/Total Questions) × 100
  • Grade Distribution = (Number of Students with Grade/Total Students) × 100

Percentage Calculation Shortcuts

Shortcut Description Example
Ctrl + Shift + % Quickly apply percentage formatting Select cells → Press shortcut
Alt + H + P + % Ribbon path to percentage format Home → Number Format → Percentage
Double-click format painter Copy percentage format to multiple cells Format one cell → Double-click painter → Click other cells
F4 Toggle absolute references in formulas Type A1 → Press F4 → becomes $A$1

Excel Functions for Percentage Calculations

PERCENTILE Function

=PERCENTILE(array, k) where k is between 0 and 1

Finds the k-th percentile of values in a range. Example: =PERCENTILE(A1:A10, 0.75) returns the 75th percentile.

PERCENTRANK Function

=PERCENTRANK(array, x, [significance])

Returns the rank of a value as a percentage of the data set. Example: =PERCENTRANK(A1:A10, A5) shows what percentage of values are below A5.

Authoritative Resources

For additional learning about percentage calculations in Excel, consult these authoritative sources:

Frequently Asked Questions

How do I calculate 15% of a number in Excel?

Multiply the number by 0.15 or use =number*15%. For example, =A1*15% or =A1*0.15.

Why does Excel show my percentage as 1.25 instead of 125%?

Your cell isn’t formatted as a percentage. Right-click the cell → Format Cells → Percentage → OK.

How can I calculate percentage change between columns?

Use =((B1-A1)/A1)*100 for percentage increase or decrease between column A and B.

What’s the difference between percentage and percentage points?

Percentage points measure the arithmetic difference between percentages (50% to 55% is a 5 percentage point increase). Percentage change would be ((55-50)/50)×100 = 10% increase.

How do I calculate cumulative percentage in Excel?

First calculate the running total, then divide each value by the grand total. Example:

  1. In C1: =B1 (first value)
  2. In C2: =C1+B2 (drag down)
  3. In D1: =C1/$C$10 (assuming total in C10)
  4. Format column D as percentage

Leave a Reply

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