creating a tournament fixture

suparno

New Member
Joined
Mar 5, 2011
Messages
8
I want to prepare an automated fixture for our cricket tournament. We have 5 teams A,B,C,D & E. Each & every team has 7 players. The team names are located in A3, A12, C3, C12 and E3 columns and its 7 players in (A4-A10, A13-A19, C4-C10..............) in Table sheet.

In Semi Final sheet, through VLOOKUP the semifinalists names appears correctly.

As the tournament has not started yet, I want if Team A/B/C/D/E appears in semifinal, in its following 7 rows, 7 players of this team appears automatically.

It worked for a single formula i.e.
=IF($J$4=Teams!$A$3,Teams!A5,0) (J4 where semifinalist team name appears), it gives the correct result. But when another condition is applied i.e. =IF(SEMIS!J4=Teams!A3,Teams!A4,0),IF(SEMIS!J4=Teams!A12,Teams!A13,0)
it did not work.

Please help.

Suparno
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
I think there are probably far easier ways to achieve your goal rather than a lot of nested IFs however the error in your formula can be corrected as follows

Code:
=IF(SEMIS!J4=Teams!A3,Teams!A4,IF(SEMIS!J4=Teams!A13,Teams!A13,0))
 
Upvote 0

Forum statistics

Threads
1,224,517
Messages
6,179,242
Members
452,898
Latest member
Capolavoro009

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