To average percentage values in Excel, you can use the AVERAGE function. Refer to the range where you have the values and then hit enter to get the result. All you need to do is that the cell where you are using this formula needs to have the percentage cell format.
In this tutorial, we will learn to write a formula for this.
Formula to Average Percentage
You can use the below steps for this:
- First, in a cell type =AVERAGE.
- Now, enter starting parentheses “(“.
- After that, refer to the range where you have the values that you want to calculate the average of.
- In the end, enter the closing parentheses and hit enter to get the result.
The moment you hit enter it returns the average of percentage values from the range.
=AVERAGE(A1:A3)
Excel is smart enough to change the cell format to percentage when you hit enter.
Weighted Average of Percentages
Yes, you can calculate the weighted average of percentages also. Below we have the number of students who scored above the percentage slab. And now you need to calculate the weighted average of these percentage values
This formula is a combination of SUMPRODUCT and SUM.
- SUMPRODUCT multiplies each count of students with the percentage and then sums up all those products.
- SUM returns the total number of students (sum of the count of students).
- In the end, divide both values to get the weighted average of percentages.
Use AVERAGEIF
You can also use AVERAGEIF for averaging percentages or create a condition to calculate the average. Let’s say you want to average values that are above 50%.
You can use the below formula:
=AVERAGEIF(A2:A12,">50%")
This only considers the cells where the percentage is above 50.
Download Sample File
More Formulas
- Calculate Compound Interest in Excel
- Calculate Cube Root in Excel
- Calculate Percentage Variance (Difference)
- Calculate Simple Interest in Excel
- Calculate SQUARE ROOT in Excel
- Calculate the Weighted Average in Excel
- Does Not Equal Operator in Excel
- Round a Number to Nearest 1000, 100, and 10
- Round to Nearest .5, 5. 50 (Down-Up) in Excel
- Square a Number in Excel