Skip to content
getgriddy.ai/blog/how-to-calculate-percentage-in-excel
Excel

How to Calculate Percentage in Excel

Calculate percentages in Excel for budgets, margins, growth, discounts, and completion rates with practical formulas that avoid common mistakes.

·5 min read

Reviewed by Griddy

Updated for current Excel and Google Sheets workflows, with examples chosen to map back to real spreadsheet tasks rather than abstract formula syntax.

Percentages in Excel are just division with percentage formatting. The hard part is choosing the right numerator and denominator.

Use percentages for budget share, margin, growth, discount rates, completion rates, and anything else where the question is "what part of the whole is this?"

Basic percentage formula

fx
=part/total

If B2 is the amount spent and C2 is the total budget, the percentage used is:

fx
=B2/C2

Format the result as Percentage. If the answer is 0.42, percentage formatting displays it as 42%.

WATCH OUT

Do not multiply by 100 and also apply percentage formatting. That turns 42% into 4200%.

Example: budget percentage used

Suppose a marketing budget has:

  • planned budget in B2
  • actual spend in C2

To calculate how much of the budget has been used:

fx
=C2/B2

If the planned budget is $5,000 and actual spend is $3,750, the formula returns 75% after percentage formatting.

That percentage is often more useful than the raw amount because it shows how much room is left before the category is over plan.

Percent change formula

Use percent change when you want to compare a new value against an old value:

fx
=(new_value-old_value)/old_value

If last month revenue is in B2 and this month revenue is in C2:

fx
=(C2-B2)/B2

A positive result means growth. A negative result means decline.

Margin percentage

Margin is profit divided by revenue:

fx
=(revenue-cost)/revenue

If revenue is in B2 and cost is in C2:

fx
=(B2-C2)/B2

This is different from markup. Margin uses revenue as the denominator. Markup uses cost as the denominator.

Increase or decrease a value by a percentage

To increase a price by a percentage:

fx
=B2*(1+C2)

If B2 is $100 and C2 is 15%, the result is $115.

To decrease a price by a percentage:

fx
=B2*(1-C2)

If C2 is 20%, the result is $80.

Common percentage mistakes

MistakeWhat happensFix
Dividing by the wrong basePercentage tells the wrong storyDecide what the "whole" is before writing the formula
Multiplying by 100 twiceResult shows as thousands of percentUse division, then apply Percentage format
Mixing margin and markupPricing math gets distortedUse revenue for margin, cost for markup
Dividing by zeroExcel returns #DIV/0!Use IFERROR or check that the base is not zero

The Griddy way

Percentage formulas are simple until a sheet mixes budget usage, margin, discounts, and growth in the same model.

"Add percent-used, percent-change, and gross-margin columns to this budget sheet"

Griddy can choose the right formula for each column and format the results as readable percentages.

Skip the manual work

Describe it. Griddy does it.

Instead of writing this formula yourself, just tell Griddy what you need in plain English. Works in Excel and Google Sheets.