Tracking player participation throughout season

John_Whin

Board Regular
Joined
Feb 26, 2013
Messages
78
Platform
  1. Windows
I've got a roster report with game number in first column (A) and player name in 4th column (D). Would like to represent the season in another way. Want the list of players on the team in one column and the game # in the top row. With the corresponding cells either having an X in them or possibly a color.

How do I load the table? This is small example, I've got 82 games and a roster list of 30+ players with about 20 in every game.

nn7ehj.jpg
[/IMG]
 
Last edited by a moderator:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
How about


Excel 2013/2016
ABCDEFGHIJK
21Joe
31Sam1234
41JohnJoeXXX
51BillySamXX
62JoeJohnXXX
72JohnBillyXXX
82BillyTimX
92TimWillyX
103JoeDonX
113JohnTomX
123WillyFrankX
133Don
144Tom
154Frank
164Sam
174Billy
All
Cell Formulas
RangeFormula
G4=INDEX($D$2:$D$17,MATCH(0,INDEX(COUNTIF($G$3:G3,$D$2:$D$17),0),0))
H4=IF(COUNTIFS($A$2:$A$17,H$3,$D$2:$D$17,$G4)>=1,"X","")
 
Upvote 0
When I applied it to the sample data on my spreadsheet it worked well, but when I plugged it into my actual data page it didn't. the cell that corresponds to G4 in your example is actually P3, H4 is actually Q3.
 
Upvote 0
How did you modify the formulae?
 
Upvote 0
I didn't. I just plugged

=INDEX($D$2:$D$17,MATCH(0,INDEX(COUNTIF($G$3:G3,$D$2:$D$17),0),0)) into P3

=IF(COUNTIFS($A$2:$A$17,H$3,$D$2:$D$17,$G4)>=1,"X","") into Q3

here is the actual sheet

2z8qfkx.jpg
[/IMG]
 
Upvote 0
You need to change the cell references
=INDEX($D$2:$D$17,MATCH(0,INDEX(COUNTIF($P$2:P2,$D$2:$D$17),0),0))
=IF(COUNTIFS($A$2:$A$17,Q$2,$D$2:$D$17,$P3)>=1,"X","")

You will also need to change the 17 to reflect the last row of data
 
Upvote 0
Changed the 17 to 1600 in both formulas and it's perfect. Fluff, you've been helpful numerous times wish I could buy you multiple rounds of your favorite beverage!

Till next time ... Cheers
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,389
Messages
6,119,232
Members
448,879
Latest member
VanGirl

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