Cumulitive scores across multiple sheets

tahuhali

New Member
Joined
Apr 9, 2014
Messages
12
Hello, I am hoping someone can tell me what functions I could use to achieve my goal.
I am planning on running an online Kahoot game with hundreds of players. Each time we play a game, I can download a report of all scores like such:
1605641973516.png

I am going to be doing several of these and I am wanting to get the cumulative Score for each player. How can make it so I have a column that totals the scores for all player across multiple sheets?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
will the players always be in the same order?

If so simply copy and paste scores in the next column and then use a column at the start to keep a check on total scores
Excel Formula:
SUM(C2:G2)
or as far across as the scores will go.

If they may be in a different order you can use an INDEX MATCH or a VLOOKUP to get the scores then copy and paste values and same detail with the cumulative score.

Rank scores and apply a filter
For example:

Book2
ABCDEF
1Player Scores
2RankPlayerCumulative ScoreGame 1Game 2Game 3
31Michelle902260345297
42Wife785246289250
53Me771335141295
64Mike703335127241
75Henry658141177340
86Sarah654179236239
97John637218246173
108Albert557220193144
Sheet1
Cell Formulas
RangeFormula
A3:A10A3=RANK(C3,$C$3:$C$10,0)
C3:C10C3=SUM(D3:F3)
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,874
Members
449,056
Latest member
ruhulaminappu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top