Hi. In the example, I have two teams (Lions & Cheetahs) who are playing each other. The winner is the team with the lowest score from either pair. I've sorted a way to do it but it seems a bit convoluted and I'm sure one of you could show me an simpler way. Many thanks.
Book1 | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | Game 1 | Game 2 | Game 3 | |||
2 | Lions A | 5 | 4 | 4 | ||
3 | Lions B | 4 | 3 | 5 | ||
4 | Cheetahs A | 3 | 3 | 6 | ||
5 | Cheetahs B | 6 | 4 | 7 | ||
6 | ||||||
7 | Lions Min | 4 | 3 | 4 | ||
8 | Cheetahs Min | 3 | 3 | 6 | ||
9 | lions | 0 | 0 | 1 | ||
10 | Cheetahs | 1 | 1 | 1 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B7:D7 | B7 | =MIN(B2:B3) |
B8:D8 | B8 | =MIN(B4:B5) |
B9 | B9 | =IF(B7<B8,1,0) |
C9:D9 | C9 | =IF(C7<C8,1,0)+B9 |
B10 | B10 | =IF(B8<B7,1,0) |
C10:D10 | C10 | =IF(C8<C7,1,0)+B10 |