Excel Percentage Calculator
Use this quick tool to calculate common percentage results and instantly see the equivalent Excel formula you can paste into your sheet.
How to Calculate Percentages in Excel (Without Guesswork)
If you've searched for an excel percentage calculator formula, you're probably trying to do one of a few tasks: find a percent of a value, calculate growth, or determine what percentage one number is of another. The good news: Excel handles all of these with simple formulas once you know the patterns.
The calculator above helps you test numbers quickly. Then you can use the exact Excel formula shown in your spreadsheet.
Most Useful Excel Percentage Formulas
1) Find X% of Y
To calculate a percentage of a number:
Example: What is 15% of 240?
Result: 36
2) Find what percent one number is of another
When you need to know how much one value represents out of a total:
Then format the cell as Percentage (Home → Number → %).
Example:
Result: 15%
3) Percentage increase or decrease
Use this formula for growth rates, price changes, KPI tracking, and monthly reports:
Format as Percentage to view clearly.
Example:
Result: 25% increase
4) Add a percentage to a value
Useful for tax, markup, salary increase, and inflation adjustments:
If the rate is entered as a whole percent (like 12.5), divide by 100:
Practical Sheet Setup
A clean structure makes percentage formulas easier to audit and reuse:
- Column A: Item or category
- Column B: Old value
- Column C: New value
- Column D: % change formula
=(C2-B2)/B2
Copy the formula down and apply percentage formatting to the entire column.
Common Mistakes (and Quick Fixes)
- Dividing by zero: If Total or Old value is 0, use
IFERROR()or a conditional check. - Wrong formatting: A formula may be correct, but if not formatted as %, it can look incorrect.
- Mixing 15 and 15%: Remember 15% equals 0.15 in Excel math.
- Absolute references: Use
$when a fixed rate cell should not move while copying formulas.
Helpful Formula Variations
Handle errors safely
Only calculate if both cells have values
Apply a fixed tax rate from one cell
Final Tip
When in doubt, break the problem into two parts: ratio first, format second. Most percentage work in Excel is just division plus proper formatting. Use the calculator above to validate your logic before applying formulas across large datasets.