Average multiple scores of the same topic
up vote
0
down vote
favorite
Say I have a spreadsheet that contains quizzes taken by students and their scores.
I want to create another table of that data the gives me an average of 2 quizzes that are related to the same topic. I have attached an example. Not all topics contain two different quizzes, some just consist of one single quiz.
Maybe someone could help me solve this.
enter image description here
I tried to use a pivot table but it creates a column for each test, not exactly what I need.
excel google-sheets excel-formula
add a comment |
up vote
0
down vote
favorite
Say I have a spreadsheet that contains quizzes taken by students and their scores.
I want to create another table of that data the gives me an average of 2 quizzes that are related to the same topic. I have attached an example. Not all topics contain two different quizzes, some just consist of one single quiz.
Maybe someone could help me solve this.
enter image description here
I tried to use a pivot table but it creates a column for each test, not exactly what I need.
excel google-sheets excel-formula
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Say I have a spreadsheet that contains quizzes taken by students and their scores.
I want to create another table of that data the gives me an average of 2 quizzes that are related to the same topic. I have attached an example. Not all topics contain two different quizzes, some just consist of one single quiz.
Maybe someone could help me solve this.
enter image description here
I tried to use a pivot table but it creates a column for each test, not exactly what I need.
excel google-sheets excel-formula
Say I have a spreadsheet that contains quizzes taken by students and their scores.
I want to create another table of that data the gives me an average of 2 quizzes that are related to the same topic. I have attached an example. Not all topics contain two different quizzes, some just consist of one single quiz.
Maybe someone could help me solve this.
enter image description here
I tried to use a pivot table but it creates a column for each test, not exactly what I need.
excel google-sheets excel-formula
excel google-sheets excel-formula
asked Nov 10 at 16:10
Firefox17
103
103
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16
add a comment |
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
add a comment |
up vote
1
down vote
accepted
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
I would use AverageIFS() like this:
=AVERAGEIFS($C:$C,$B:$B,F$1,$A:$A,$E2)
As per the screenshot below. Hope this helps!!!
answered Nov 10 at 17:03
RichardBJ
1265
1265
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
add a comment |
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
1
1
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
Thanks this works perfectly!
– Firefox17
Nov 10 at 17:35
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240825%2faverage-multiple-scores-of-the-same-topic%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
So have you tried AVERAGEIFS() ?
– Solar Mike
Nov 10 at 16:17
@SolarMike I couldn't find an example of a similar use of AVERAGEIFS()
– Firefox17
Nov 10 at 17:02
Well, the answer shown does a good job, it’s also in the excel help.
– Solar Mike
Nov 10 at 17:16