In my NCAA pool we place points per team, with each player winning that number of points each time that team wins. Standings are as shown.
What I would like to do is show next to each player the top x teams s/he still has in the running. So for example Player 4 could show Auburn 10, Florida 9, Houston 7 in the next cell as his top picks, having put 10 on Auburn etc.
A player's picks are stored in the following table. So Player 3's cell opposite the standings would show Florida 10, Houston 9, Auburn 8 (this being what's left in the Final Four).
I have a named range called LostList that tells whether the team has been knocked out of the tournament. It matches the order of the teams in the pick list above.
...
(01) Houston FALSE
(02) Alabama TRUE
...
etc.
So I would like a TRANSPOSE(FILTER(LARGE(...))) construction that would take the top x teams by player ranking for each player and show it in the cell next to the standings.
Any ideas? Thanks.
Player | Points | Max Remaining Points | |
1 | Player 4 | 192 | 28 |
2 | Player 7 | 190 | 29 |
3 | 189 | 29 | |
4 | 188 | 29 | |
5 | 187 | 29 | |
6 | 186 | 29 | |
7 | 185 | 29 | |
8 | 184 | 29 | |
9 | 183 | 28 |
What I would like to do is show next to each player the top x teams s/he still has in the running. So for example Player 4 could show Auburn 10, Florida 9, Houston 7 in the next cell as his top picks, having put 10 on Auburn etc.
A player's picks are stored in the following table. So Player 3's cell opposite the standings would show Florida 10, Houston 9, Auburn 8 (this being what's left in the Final Four).
Teams | Total Pts | Pick to Win | Player 1 | Player 2 | Player 3 |
(01) Auburn | 196 | 3 | 6 | 7 | 8 |
(01) Duke | 200 | 11 | 8 | 10 | |
(01) Florida | 155 | 4 | 5 | 8 | 10 |
(01) Houston | 165 | 4 | 10 | 9 | 9 |
(02) Alabama | 114 | 5 | 2 | ||
(02) Michigan St | 131 | 1 | 9 | 3 | 1 |
(02) St. Johns | 88 | 1 | 4 | 6 | 6 |
(02) Tennessee | 89 | 7 | 2 | ||
(03) Iowa State | 18 | 3 | |||
(03) Kentucky | 28 | 5 | |||
(03) Texas Tech | 48 | 1 | |||
(03) Wisconsin | 27 | 4 | 7 | ||
(04) Arizona | 30 | 4 | |||
(04) Maryland | 14 | 1 | |||
(04) Purdue | 5 | ||||
(04) Texas A&M | 1 | ||||
(05) Clemson | 9 | ||||
(05) Memphis | 4 | ||||
(05) Michigan | 6 | ||||
(05) Oregon | 9 | 1 | |||
(06) BYU | 3 | 3 | |||
(06) Illinois | 4 | ||||
(07) Kansas | 17 | ||||
(07) UCLA | 6 | ||||
(08) Gonzaga | 6 | 2 | |||
(11) Drake | 2 |
I have a named range called LostList that tells whether the team has been knocked out of the tournament. It matches the order of the teams in the pick list above.
...
(01) Houston FALSE
(02) Alabama TRUE
...
etc.
So I would like a TRANSPOSE(FILTER(LARGE(...))) construction that would take the top x teams by player ranking for each player and show it in the cell next to the standings.
Any ideas? Thanks.