Tournament Setup for 8 Teams. How to setup for losers bracket.

TerrorTot38

New Member
Joined
Feb 2, 2022
Messages
21
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. 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
Excel Formula:
=CONCATENATE(B19, " & ", B20)
The second box (semi final) has the statement
Excel Formula:
=IFERROR(VLOOKUP(TRUE,A2:B3,2,FALSE),"")
. Then I have a final box with the same code as the semi final.

Top 8Semi-FinalFinalWinner
TRUE​
A & B
FALSE​
C & D
FALSE​
A & B
TRUE​
G & H
FALSE​
E & F
TRUE​
G & H
FALSE​
G & HI & 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
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
you could do it like this (i did 2 methods, one with nested if's and one with vlookup)
the green cells are 1 when home wins and 0 when away wins, the other adjust itselfs.
The losers play then there own tournament, see N21:N24.
There you copy those random numbers 1-4 from the column M into N, or you do it your own way.

Map1
ABCDEFGHIJKLMNO
1
2Top 8Semi-FinalFinalWinner
31A & B
40C & D
51A & B
6G & H
70E & F
81G & H
91A & BA & B
10I & J
111I & J
120K & L
131I & J
14M & N
151M & N
160O & P
17
18
191O & P
200C & Drandom 1-4copy column M and paste as value in N
211O & PO & P0,63039232C & D
22K & L0,8611124E & F
231K & L0,96913113K & L
240E & F0,0509441O & P
25
Blad1
Cell Formulas
RangeFormula
A4,D24,D20,A16,A12,A8A4=+IF(A3<>"",1-A3,"")
E5,H21,E13E5=IF(A3<>"",IF(A3=1,B3,B4),"")
E6,H22,E14E6=IF(A7<>"",IF(A7=1,B7,B8),"")
H9H9=IF(D5<>"",IF(D5=1,E5,E6),"")
J9,J21J9=IF(G9<>"",IF(G9=1,H9,H10),"")
E19E19=VLOOKUP(1,$N$21:$O$24,2,0)
E20E20=VLOOKUP(2,$N$21:$O$24,2,0)
L21:L24L21=RAND()
M21:M24M21=RANK(L21,$L$21:$L$24)
E23E23=VLOOKUP(3,$N$21:$O$24,2,0)
E24E24=VLOOKUP(4,$N$21:$O$24,2,0)
O21O21=VLOOKUP(0,$A$3:$B$4,2,0)
O22O22=VLOOKUP(0,A7:B8,2,0)
O23O23=VLOOKUP(0,$A$11:$B$12,2,0)
O24O24=VLOOKUP(0,A15:B16,2,0)
Cells with Data Validation
CellAllowCriteria
A3Whole numberbetween 0 and 1
A7Whole numberbetween 0 and 1
A11Whole numberbetween 0 and 1
A15Whole numberbetween 0 and 1
D13Whole numberbetween 0 and 1
D5Whole numberbetween 0 and 1
G9Whole numberbetween 0 and 1
D19Whole numberbetween 0 and 1
D23Whole numberbetween 0 and 1
G21Whole numberbetween 0 and 1
 
Upvote 0

Forum statistics

Threads
1,215,374
Messages
6,124,567
Members
449,171
Latest member
jominadeo

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