Weighted grades

O

Otyokwa

In my spread sheet I have an average test grade and an average homework grade
and would like to get an average grade from the two. However I would like
the test grade to have more weight. I think I am supposed to use sumproduct
but I am not sure how. Thank you for your help.
 
B

Bernie Deitrick

Generally, SUMPRODUCT is used like this to get a weighted average:

=SUMPRODUCT(RangeWithScores,RangeWithWeights)/SUM(RangeWithWeights)

If you just ahve two cells, and make your weights percentages so that they
add up to 100%, then you could use

=Score1*Weight1 + Score2*Weight2

HTH,
Bernie
MS Excel MVP
 
T

T. Valko

Not enough info.

See if this helps...

A1 = test grade
A2 = homework grade

The test grade accounts for 70% of the average and the homework grade
accounts for 30% of the average

......A.....B
1..60...0.7
2..55...0.3

=SUMPRODUCT(A1:A2,B1:B2)

Weighted average = 58.5
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Counting multiple memberships 1
calculating average handling time 7
Omit empty cells? 0
Lookup function 1
Grades in Excell 2007 1
lookup formula not picking up correct data 2
COUNTIF Question 12
IF function 4

Top