If you work with budgets, discounts, growth rates, test scores, commissions, or dashboards, this page gives you two things: a fast percentage calculator and clear Excel formulas you can copy right away.
Excel Percentage Calculator
Choose a calculation type, enter your values, and click Calculate.
How to calculate percentages in Excel quickly
Excel does not have a single built-in “percentage calculator” button, but percentage math is simple once you know the right formula pattern. Most use cases fall into four categories:
- Find a percentage of a number
- Find what percent one value is of another
- Calculate percentage increase or decrease
- Add or subtract a percentage from a value
1) Find X% of a number
If you need 15% of 240, use:
=240*15% or =240*0.15
In cell references, if A2 is the base number and B2 is the percent:
=A2*B2 (when B2 is formatted as a percentage like 15%)
or
=A2*(B2/100) (when B2 is entered as 15 without % format).
2) A is what percent of B?
This is a common ratio question, such as “45 is what percent of 60?” Use:
=A2/B2
Then format the result cell as Percentage. Excel will show 75%.
3) Percentage increase or decrease
To measure change from old value to new value:
=(New-Old)/Old
Example with cells:
=(B2-A2)/A2
If A2 is 80 and B2 is 100, result is 25% increase.
4) Add or subtract a percentage from a value
To increase a value by 10%:
=A2*(1+10%)
To decrease a value by 10%:
=A2*(1-10%)
If percent is in B2:
=A2*(1+B2) (for increase), or =A2*(1-B2) (for decrease).
Excel percentage formulas cheat sheet
- Percentage of total:
=Part/Total - Percent change:
=(New-Old)/Old - Markup:
=(SellingPrice-Cost)/Cost - Margin:
=(SellingPrice-Cost)/SellingPrice - Apply discount:
=Price*(1-Discount%) - Apply tax:
=Price*(1+TaxRate%)
Common mistakes and how to fix them
Percent format confusion
Typing 10% and typing 10 are not the same. In Excel, 10% equals 0.10. If a cell is already formatted as %, entering 10 will display 10% but store 0.10.
Results look 100x too big or small
This usually means you divided by 100 twice or forgot to divide at all. Check whether your input percent is entered as 10 or 10% and write formulas accordingly.
Divide-by-zero errors
When calculating A/B, if B is zero, Excel returns #DIV/0!. Wrap formulas with error handling:
=IFERROR(A2/B2,0)
Percentage points vs percent change
Going from 10% to 12% is +2 percentage points, but a 20% relative increase. Use the right language in reports to avoid confusion.
Practical examples you can use at work
Sales dashboard
Track month-over-month growth with =(CurrentMonth-PreviousMonth)/PreviousMonth. Format as percentage and add conditional formatting arrows.
Budget planning
Estimate next year’s expense with inflation rate:
=CurrentCost*(1+InflationRate)
Pricing and discounts
If list price is in A2 and discount in B2:
=A2*(1-B2)
This gives the final discounted price.
Should you use this calculator or Excel formulas?
Use this on-page calculator when you need a quick answer or a formula reminder. Use Excel formulas when you need repeatable calculations across many rows, live dashboards, and automated reports.
FAQ
Why does Excel show 0.25 instead of 25%?
Your cell is likely formatted as General or Number. Change it to Percentage format.
How do I copy a percentage formula down a column?
Use the fill handle and lock fixed references with $ when needed, for example =A2/$B$1.
Can percentages be negative?
Yes. A negative percentage usually represents a decrease, loss, or contraction.
Use the calculator above whenever you need a fast check, then transfer the matching formula into your spreadsheet for scalable analysis.