Using Google Sheets I have the following setup:
------------------------------------------------
| Game | Player 1 | Player 2 | Player 3 |
------------------------------------------------
| Racing | L | W | X |
| Sonic 2 | W | L | X |
| Sonic 2 | W | X | L |
| Sonic 2 | L | X | W |
| Racing | L | W | X |
| Racing | L | W | X |
------------------------------------------------
Each "game" is a two player game.
W represents a win
L represents a loss
X represents did not play
I want to calculate the following and output it to cells:
- Total wins at game "Racing" for player 1.
- Total losses at game "Racing" for player 1.
- Wins at game "Racing" for player 1 while playing against player 2.
- Losses at game "Racing" for player 1 while playing against player 2.
- Wins at game "Racing" for player 1 while playing against player 3.
Losses at game "Racing" for player 1 while playing against player 3.
etc.
How can I do this?