Excel Percentage Calculator
Calculate 20% of any number instantly with our interactive tool
Comprehensive Guide: How to Calculate 20% of a Number in Excel
Calculating percentages in Excel is one of the most fundamental yet powerful skills for data analysis, financial modeling, and business reporting. Whether you’re calculating sales commissions, tax amounts, or performance metrics, understanding how to compute percentages efficiently can save you hours of manual work.
Basic Percentage Formula
The core formula for calculating 20% of a number in Excel is:
=number*20% or =number*0.20
This works because percentages are essentially fractions of 100 (20% = 20/100 = 0.20).
Alternative Methods
- Using PERCENTAGE function:
=A1*PERCENTAGE(20) - Reference cell method:
=A1*B1(where B1 contains 20%) - Percentage format trick: Enter 0.20 and format as percentage
Step-by-Step Calculation Process
- Enter your base number: Type your number in cell A1 (e.g., 500)
- Create the formula:
- In cell B1, type:
=A1*20%or=A1*0.20 - Alternatively, type 20% in cell B1 and in cell C1 type:
=A1*B1
- In cell B1, type:
- Press Enter: Excel will automatically calculate the result
- Format the result (optional):
- Select the result cell
- Press Ctrl+1 (or right-click > Format Cells)
- Choose “Number” or “Currency” format as needed
| Method | Formula Example | Best For | Pros | Cons |
|---|---|---|---|---|
| Direct Percentage | =A1*20% |
Quick calculations | Fastest method, easy to read | Hardcoded percentage |
| Cell Reference | =A1*B1 |
Dynamic calculations | Easy to change percentage, reusable | Requires extra cell |
| PERCENTAGE Function | =A1*PERCENTAGE(20) |
Complex formulas | Explicit function, good for documentation | Slightly longer to type |
| Percentage Format | Enter 0.20, format as % | Data entry | Visually clear, good for input | Requires formatting step |
Advanced Percentage Calculations
Once you’ve mastered basic percentage calculations, you can apply these techniques to more complex scenarios:
1. Calculating Percentage Increase/Decrease
To calculate a 20% increase:
=A1*(1+20%) or =A1*1.20
For a 20% decrease:
=A1*(1-20%) or =A1*0.80
2. Finding What Percentage a Number Is of Another
To find what percentage 50 is of 200:
=50/200 then format as percentage (result: 25%)
3. Calculating Original Number from Percentage
If 20% of a number is 100, find the original number:
=100/20% or =100/0.20 (result: 500)
4. Percentage of Total (Common for Pivot Tables)
If you have values in A1:A5 and want each as % of total:
=A1/SUM($A$1:$A$5) then format as percentage
| Scenario | Excel Formula | Example Input | Result | Common Use Case |
|---|---|---|---|---|
| Basic 20% calculation | =A1*20% |
A1=500 | 100 | Sales tax, tips, commissions |
| 20% increase | =A1*1.20 |
A1=500 | 600 | Price increases, growth projections |
| 20% decrease | =A1*0.80 |
A1=500 | 400 | Discounts, depreciation |
| What % is A1 of A2? | =A1/A2 |
A1=50, A2=200 | 25% | Market share, contribution analysis |
| Original number from 20% | =A1/20% |
A1=100 | 500 | Reverse calculations, error checking |
Common Mistakes and How to Avoid Them
- Forgetting to use percentage format:
Mistake: Entering “20” instead of “20%” or “0.20”
Solution: Either type the % sign or divide by 100 (20% = 0.20)
- Cell reference errors:
Mistake: Using
=A1*B1then copying down without absolute referencesSolution: Use
=A1*$B$1to lock the percentage cell - Division instead of multiplication:
Mistake: Using
=A1/20%when you meant=A1*20%Solution: Remember “of” means multiply in percentage calculations
- Incorrect decimal places:
Mistake: Getting 100.00000001 instead of 100
Solution: Use ROUND function:
=ROUND(A1*20%, 2) - Forgetting to update references:
Mistake: Copying formulas without adjusting cell references
Solution: Use relative/absolute references appropriately
Real-World Applications of Percentage Calculations
Business Finance
- Calculating sales tax (e.g., 20% VAT)
- Determining profit margins
- Computing employee commissions
- Analyzing expense ratios
Data Analysis
- Calculating percentage change over time
- Determining market share percentages
- Analyzing survey response distributions
- Creating percentage-based dashboards
Personal Finance
- Calculating tip amounts
- Determining savings goals (20% of income)
- Analyzing investment returns
- Computing loan interest
Excel Shortcuts for Percentage Calculations
- Quick percentage format: Select cells > Press Ctrl+Shift+%
- Increase decimal places: Select cells > Press Alt+H, 0 (zero)
- Decrease decimal places: Select cells > Press Alt+H, 9
- Quick multiplication:
- Enter your numbers in column A
- Enter 0.20 in any empty cell and copy it
- Select your numbers, right-click > Paste Special > Multiply
- Flash fill for percentages:
- Enter your base numbers in column A
- Manually type the first percentage result in column B
- Press Ctrl+E to fill the rest automatically
Alternative Methods Without Formulas
For quick calculations without remembering formulas:
- Quick Analysis Tool:
- Select your data range
- Click the Quick Analysis button (or press Ctrl+Q)
- Go to “Formatting” tab and select “%”
- Paste Special Operation:
- Enter your base numbers in column A
- Enter 0.20 in any cell and copy it
- Select your numbers in column A
- Right-click > Paste Special > Multiply
- Data Tables:
- Create a simple table with your base numbers
- Add a calculated column with the formula
=[@Column1]*20% - Excel will automatically apply the formula to all rows
Learning Resources and Further Reading
To deepen your understanding of Excel percentage calculations, explore these authoritative resources:
- Microsoft Official Documentation: Calculate Percentages in Excel – Comprehensive guide from Microsoft with examples and troubleshooting
- GCFGlobal Excel Percentage Tutorial – Free interactive tutorial with practice exercises
- Math Goodies Excel Percentage Lessons – Mathematical foundation for percentage calculations in Excel
Frequently Asked Questions
Q: Why does Excel show 20% as 0.20 in the formula bar?
A: Excel stores percentages as their decimal equivalents (20% = 0.20) but displays them as percentages when formatted. This allows for accurate mathematical operations.
Q: How do I calculate 20% of multiple numbers at once?
A: Use the Paste Special > Multiply method:
- Enter your numbers in column A
- Enter 0.20 in any cell and copy it
- Select your numbers in column A
- Right-click > Paste Special > Multiply > OK
Q: Can I calculate percentages in Excel Online or Mobile?
A: Yes, the same formulas work in all versions of Excel. The mobile app has a slightly different interface but supports all percentage calculations.
Q: How do I handle percentage calculations with negative numbers?
A: The same formulas apply. For example, =-500*20% will return -100. This is useful for calculating losses or negative adjustments.
Q: What’s the difference between =A1*20% and =A1*0.20?
A: There’s no mathematical difference – both will give the same result. Using 20% is often more readable, while 0.20 might be preferred in complex formulas where you’re working with many decimal values.