TerrorTot38
New Member
- Joined
- Feb 2, 2022
- Messages
- 21
- Office Version
- 365
- Platform
- Windows
- Mobile
- Web
Hi All, I have a knockout tournament for 16 players. When you lose a match you are out the first round just puts the players in the firstbox
The second box (semi final) has the statement
. Then I have a final box with the same code as the semi final.
My question in the example above is C & D, E & F, K & L , O & P all lost. How would I generate something similar for the losers bracket. Alternatively Random pairings / opponents for example D & E, F & K, L & P, O & C which I could hard code but what if C & D won but A & B lost. Is there such a way to do this?
Any questions please do ask.
Thanks,
J
Excel Formula:
=CONCATENATE(B19, " & ", B20)
Excel Formula:
=IFERROR(VLOOKUP(TRUE,A2:B3,2,FALSE),"")
Top 8 | Semi-Final | Final | Winner | ||||||
TRUE | A & B | ||||||||
FALSE | C & D | ||||||||
FALSE | A & B | ||||||||
TRUE | G & H | ||||||||
FALSE | E & F | ||||||||
TRUE | G & H | ||||||||
FALSE | G & H | I & J | |||||||
TRUE | I & J | ||||||||
TRUE | I & J | ||||||||
FALSE | K & L | ||||||||
TRUE | I & J | ||||||||
FALSE | M & N | ||||||||
TRUE | M & N | ||||||||
FALSE | O & P |
My question in the example above is C & D, E & F, K & L , O & P all lost. How would I generate something similar for the losers bracket. Alternatively Random pairings / opponents for example D & E, F & K, L & P, O & C which I could hard code but what if C & D won but A & B lost. Is there such a way to do this?
Any questions please do ask.
Thanks,
J