EDUCBA

EDUCBA

MENUMENU
  • Blog
  • All Courses
  • All in One Bundle
  • Login
Home Excel Excel Resources Excel Tips Weighted Average in Excel

Weighted Average in Excel

Madhuri Thakur
Article byMadhuri Thakur

Updated July 19, 2023

What is the Weighted Average in Excel?

A weighted average in Excel uses SUMPRODUCT & SUM function to calculate the average of a set of values, where each value has a differing degree of importance (weight).

Weighted average and standard average calculations differ by the weights associated with each value. The standard average is for values with identical weights, and the weighted average is for values with different weights. In the following example, we have found the weighted average of a student’s marks using the SUMPRODUCT and SUM functions.

Weighted Average in Excel

Start Your Free Excel Course

Excel functions, formula, charts, formatting creating excel dashboard & others

The weighted average in Excel is commonly used in the accounting field, in stock market evaluations, and in schools and universities for calculating the average marks of students.

Key Highlights

  • The weighted average in Excel is calculated by taking the average of a set of values, each with different associated weights or values.
  •  Obtaining a weighted average involves determining the relative importance of each factor in a data set.
  • A weighted average in Excel is usually more accurate than a standard (simple) average.
  • Stock investors use weighted averages to track the cost basis of their bought shares at different times.

We use the SUMPRODUCT and SUM functions in Excel to find the weighted average of certain values.

SUM Function Syntax

=SUM(number1, number2, number3…)

number1, number2, number3: Indicate the numbers to be added in the data range

The SUM function adds the values of specified cells.

SUMPRODUCT Function Syntax

=SUMPRODUCT(array1, array2, array3,…)

array1, array2, array3: Indicate the range that we want to add

SUMPRODUCT function provides the SUM (addition) of the products (multiplied) values in the selected date range

How to use the Weighted Average in Excel?

To understand the Weighted Average in Excel, consider the following examples.

You can download this Weighted Average in Excel Template here – Weighted Average in Excel Template

Calculation Using SUM Function

Example #1

The below table shows the Brand Names of medicines with their prices per 1000 tablets, Quantity sold in a quarter, and the Sales value. We want to find the Weighted Average using the SUM function.

Weighted Average in Excel Example 1

Solution: To understand the difference between the average and the weighted average in Excel, first, we will find the standard average of the Price Per 1000 Tablets.

Step 1: Place the cursor in cell B12 and enter the formula,

=AVERAGE(B6:B10)

Step 1

Step 2: Press the Enter key to get the below result

Step 2

The AVERAGE formula calculates the average Price Per 1000 Tablets and gives the value of 1036.

Now, to calculate the weighted average in Excel,

Step 3: Place the cursor in cell B13 and enter the formula,

=SUM(B6*C6,B7*C7,B8*C8,B9*C9,B10*C10)/SUM(C6:C10)

Step 3

Explanation: To find the weighted average, we will first multiply all the values of the desired parameter (price per 1000 tablets) with their corresponding weights (quantity sold in a quarter), add them, and divide by the SUM of the weights (quantity sold in a quarter).

Step 4: Press Enter key to get the below result

Step 4

It gives a weighted average of 948.38.

Note: The SUM function is usually used to calculate the weighted average of small data tables. If we use it for large data sets, it may give erroneous results.

Calculation Using SUMPRODUCT and SUM Function

Combining SUMPRODUCT with the SUM function, gives accurate results without any error, and we can also use it to calculate the weighted average of large data sets.

Example #2

Consider the same data as above. Here, we want to find the weighted average using SUMPRODUCT and SUM Function.

Weighted Average in Excel Example 2

Solution:

Step 1: Place the cursor in cell B12 and enter the formula,

=SUMPRODUCT(B6:B10,C6:C10)/SUM(C6:C10)

EG 2 STEP 1

Explanation: The SUMPRODUCT function multiplies the dataset of two or more arrays and then adds the products. Therefore, here, it first multiples the price range per 1000 Tablets with the range of Qty Sold in a Quarter and then adds the product. This product is then divided by the SUM of Qty sold.

Step 2: Press Enter key to get the below result

EG 2 STEP 2

It gives a weighted average of 948.38.

Example #3

The table below shows the total number of employees with their total sales in April, May, and June and the total yearly sales. We want to calculate their weighted average using SUMPRODUCT and SUM functions.

Weighted Average in Excel EXAMPLE 3

Solution:

Step 1: Place the cursor in cell B11 and enter the formula,

=SUMPRODUCT(B7:B9,C7:C9)/SUM(B7:B9)

EG 3 STEP 1

Step 2: Press Enter key to get the below result

EG 3 STEP 2

It gives a weighted Average of 239.

Example #4

The table below shows a student’s marks in different assessment types- Assignment 1, Assignment 2, Presentation, Theory Exam, and Practical Exam. Each assessment has a different weight. We want to find the standard average and the weighted average of marks obtained by the student using the SUMPRODUCT and SUM functions.

Weighted Average in Excel EXAMPLE 4

Solution:

1] To find the Standard Average-

Step 1: Place the cursor in cell B12 and enter the formula,

=AVERAGE(B6:B10)

EXAMPLE 4 STEP 1

Step 2: Press Enter key to get the below result

EXAMPLE 4 STEP 2

It gives the Standard Average of 66 of the marks obtained by the student.

2] To find the Weighted Average-

Step 3: Place the cursor in cell B13 and enter the formula,

=SUMPRODUCT(B6:B10,C6:C10)/SUM(C6:C10)

EXAMPLE 4 STEP 3

Now,

Step 4: Press Enter key to get the below result

EXAMPLE 4 STEP 4

It gives a weighted average of 68.05.

Things to Remember

  • SUMPRODUCT returns the #VALUE! Error if array arguments are of different sizes. Therefore, all array arguments must be the same size, or the same number of datasets should be present in each array.
  • If the datasets contain text data in a range, SUMPRODUCT treats or considers them zero.

Frequently Asked Questions (FAQs)

Q1) What is the purpose of calculating a weighted average?

Answer: A weighted average is the average of certain values considering their respective weights. For example, a teacher calculates the weighted average of all the assessments in a semester, including theory exams, practical exams, and oral exams with different weights. It gives the average performance of the students in all the exams.

Q2) Why is weighted average better than simple average?

Answer: The weighted average in Excel considers the importance of relative factors within a data table. It is more accurate compared to the standard average calculation. For example, stock investors use a weighted average method to find the cost basis of their shares in the market.

Q3) What is the difference between weighted and unweighted averages?

Answer: One can better understand the difference between weighted and unweighted averages by using the GPA (Grade Point Average) marking system.. An unweighted GPA calculates the student’s overall average score (grade) out of 4.0, and a weighted GPA reflects grades and course levels.

Q4) What is the weighted average called?

Answer: The weighted average is also known as the weighted mean. In accounting calculations, both terms are interchangeably used. If the weights of all credits or values are equal, then the weighted mean will be the same as the arithmetic mean.

 Recommended Articles

The above article has guided understanding and using Weighted Averages in Excel. EDUCBA would highly recommend reading the below-given articles for gaining more knowledge of Excel-related topics.

  1. Excel Average Formula
  2. Excel AVERAGEIF
  3. Excel Moving Averages
  4. Statistics in Excel
MICROSOFT POWER BI Course Bundle - 8 Courses in 1
34+ Hours of HD Videos
8 Courses
Verifiable Certificate of Completion
Lifetime Access
4.5
MS Excel & VBA for Data Science Course Bundle - 24 Courses in 1 | 10 Mock Tests
87+ Hours of HD Videos
24 Courses
10 Mock Tests & Quizzes
Verifiable Certificate of Completion
Lifetime Access
4.5
All-in-One Financial Analyst Masters Training Program Bundle - 550+ Courses | 300+ Mock Tests | 2000+ Hours | Lifetime |
2000+ Hours of HD Videos
43 Learning Paths
550+ Courses
Verifiable Certificate of Completion
Lifetime Access
4.9
All-in-One Data Science Bundle - 400+ Courses | 550+ Mock Tests | 2000+ Hours | Lifetime |
2000+ Hour of HD Videos
80 Learning Paths
400+ Courses
Verifiable Certificate of Completion
Lifetime Access
4.7
Primary Sidebar
Popular Course in this category
MS Excel Course Bundle - 36 Courses in 1 | 13 Mock Tests
 137+ Hours of HD Videos
36 Courses
13 Mock Tests & Quizzes
  Verifiable Certificate of Completion
  Lifetime Access
4.9
Price

View Course
Footer
About Us
  • Blog
  • Who is EDUCBA?
  • Sign Up
  • Live Classes
  • Certificate from Top Institutions
  • Contact Us
  • Verifiable Certificate
  • Reviews
  • Terms and Conditions
  • Privacy Policy
  •  
Apps
  • iPhone & iPad
  • Android
Resources
  • Free Courses
  • Excel Charts
  • Excel Tips
  • All Tutorials
Certification Courses
  • All Courses
  • Excel VBA Course - All in One Bundle
  • VBA Course
  • Excel Data Analysis Course
  • Excel for Marketing Course
  • Excel for Finance Course
  • Excel for HR Training

ISO 10004:2018 & ISO 9001:2015 Certified

© 2023 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

Download Weighted Average in Excel Template

Let’s Get Started

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA
Free Excel Course

Excel functions, formula, charts, formatting creating excel dashboard & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

By signing up, you agree to our Terms of Use and Privacy Policy.

EDUCBA

Download Weighted Average in Excel Template

EDUCBA

डाउनलोड Weighted Average in Excel Template

This website or its third-party tools use cookies, which are necessary to its functioning and required to achieve the purposes illustrated in the cookie policy. By closing this banner, scrolling this page, clicking a link or continuing to browse otherwise, you agree to our Privacy Policy

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more