Excel Percentage Calculator
Calculate what percentage a number is of a total in Excel with this interactive tool
Calculation Results
of the total value
Complete Guide: How to Calculate a Percentage of a Total in Excel
Calculating percentages in Excel is one of the most fundamental yet powerful skills for data analysis. Whether you’re working with financial data, survey results, or performance metrics, understanding how to compute percentages will save you time and reduce errors in your spreadsheets.
Basic Percentage Formula in Excel
The core formula for calculating what percentage a number is of a total follows this structure:
Method 2: Using the Percentage Format Directly
Excel can automatically convert decimals to percentages when you use the percentage format:
- Enter your values in cells A1 (total) and B1 (part)
- In C1, enter:
=B1/A1 - With C1 selected, press Ctrl+Shift+% to apply percentage format
- The result will display as a percentage (15%)
Method 3: Using the PERCENTAGE Function (Excel 2013+)
For newer Excel versions, you can use:
=((New_Value-Old_Value)/Old_Value)*100
Example: If sales increased from $80,000 to $100,000:
| Scenario | Formula | Example | Result |
|---|---|---|---|
| What is X% of Y? | =Y*(X/100) | =100*(15/100) | 15 |
| X is what % of Y? | =X/Y | =75/500 | 15% |
| X is Y% of what number? | =X/(Y/100) | =15/(10/100) | 150 |
| What % of Y is X? | =X/Y | =30/200 | 15% |
| Percentage increase from X to Y | =((Y-X)/X)*100 | =((125-100)/100)*100 | 25% |