Cal11 calculator

How to Put Formula in Excel to Calculate Percentage

Reviewed by Calculator Editorial Team

Calculating percentages in Excel is essential for financial analysis, data interpretation, and reporting. This guide explains how to create percentage formulas in Excel with step-by-step instructions, examples, and best practices for accurate calculations.

Basic Percentage Formula

The most common percentage calculation is finding what percentage one number is of another. For example, what percentage is 25 of 200?

Formula: = (Part / Whole) * 100

In Excel, you would enter: = (B2 / B1) * 100

To calculate this in Excel:

  1. Enter your whole number in cell B1 (e.g., 200)
  2. Enter your part number in cell B2 (e.g., 25)
  3. In cell B3, enter the formula: = (B2 / B1) * 100
  4. Press Enter to see the result (12.5%)

This formula works for any percentage calculation where you need to find what percentage one value is of another.

Percentage Difference Formula

To calculate the percentage difference between two numbers, use this formula:

Formula: = (New Value - Old Value) / Old Value * 100

In Excel: = (B2 - B1) / B1 * 100

Example: If a product's price increased from $50 to $60, the percentage increase would be:

  1. Enter 50 in cell B1
  2. Enter 60 in cell B2
  3. In cell B3, enter: = (B2 - B1) / B1 * 100
  4. Result: 20% increase

Percentage Change Formula

This formula is similar to percentage difference but can handle both increases and decreases:

Formula: = (New Value - Old Value) / ABS(Old Value) * 100

In Excel: = (B2 - B1) / ABS(B1) * 100

Example: If a stock price changed from $100 to $90:

  1. Enter 100 in cell B1
  2. Enter 90 in cell B2
  3. In cell B3, enter: = (B2 - B1) / ABS(B1) * 100
  4. Result: -10% change (10% decrease)

Percentage of Total Formula

To calculate what percentage each part contributes to a total:

Formula: = (Part / SUM(Whole Range)) * 100

In Excel: = (B2 / SUM(B1:B5)) * 100

Example: For sales data in cells B1:B5:

  1. Enter sales figures in B1:B5
  2. In cell B6, enter: = (B2 / SUM(B1:B5)) * 100
  3. Repeat for other cells to see each part's percentage of total

Formatting Percentage Results

After calculating percentages, you may want to format them properly:

  1. Select the cells with percentage results
  2. Right-click and choose "Format Cells"
  3. Select "Percentage" from the Number tab
  4. Choose the number of decimal places you want to display
  5. Click OK to apply the formatting

Tip: Excel automatically displays percentages as decimals (e.g., 0.125 for 12.5%). Formatting converts them to proper percentage display.

Common Mistakes to Avoid

When working with percentage formulas in Excel, watch out for these common errors:

  • Incorrect cell references: Make sure your formula references the correct cells. A small typo can give wrong results.
  • Missing parentheses: Percentage formulas often require parentheses. Forgetting them can cause calculation errors.
  • Dividing by zero: If your denominator (whole number) is zero, Excel will show an error. Always check for zero values.
  • Not formatting results: While Excel can display percentages as decimals, proper formatting makes results clearer.
  • Using commas instead of periods: Excel uses periods as decimal separators, not commas. This can cause errors in some regions.

Double-check your formulas and results to ensure accuracy in your Excel calculations.

Frequently Asked Questions

How do I calculate percentage increase in Excel?

Use the formula: = (New Value - Old Value) / Old Value * 100. This will give you the percentage increase between two values.

Can I use percentage formulas with negative numbers?

Yes, percentage formulas work with negative numbers. The result will show the percentage change, including direction (increase or decrease).

How do I calculate percentage of a total in Excel?

Use the formula: = (Part / SUM(Whole Range)) * 100. This calculates what percentage each part contributes to the total sum.

Why is my percentage formula giving a negative result?

A negative result indicates a decrease. Check if your new value is smaller than your old value. If you want to show the absolute percentage change, use the ABS function.

How can I make percentage results more readable?

Right-click the cells, choose Format Cells, select Percentage, and choose the number of decimal places you want to display. This will format the numbers as percentages.