Reputation: 113
Lets say I have this kind of spreadsheet:
Where each row represents answers to a question. First row is title row. P1A - P3A is player1 through player3 answers and RA is the right answer.
Is it possible to add subtotal row which will show number of right answers for each player without adding extra columns for making "IF" tests.
So the total will look like this: 1 | 2 | 1
Upvotes: 0
Views: 24
Reputation: 1937
You can use sum product to find this. Use the formula like below
=SUMPRODUCT((A2:A4=$D2:$D4)*1)
Upvotes: 2