Nitehawkhp
New Member
- Joined
- Dec 2, 2016
- Messages
- 37
Hello,
First let me give you a little background on my problem. This is my first post in this forum. I have tried to find a solution to my problem by searching the web and several forums. However, I have not found one. I have been able to get some segments to work but need some assistance to finish my creation.
I have three table top Skeeball machines will accommodate two players on each game. The machines keep score for each round of two players, and each Christmas my family has a friendly competition playing Skeeball
I have created several sheets in Excel to generate the tournament brackets, track players, determine winners of each game, and announce the winner of the competition. (With macros to control each function, for adding players, moving data, and printing winner certificates. I want to add a sheet that will store the scores, players, and champion, of each year.
I have a workbook with the following configuration:
<tbody>
</tbody>
You can see below that; columns A through H contains sample (totally fictitious) scores recorded by year.
[TABLE="width: 996"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[TD]H[/TD]
[TD]I[/TD]
[TD]J[/TD]
[TD]K[/TD]
[TD]L[/TD]
[TD]M[/TD]
[TD]N[/TD]
[TD]O[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD="colspan: 8"]SCORES RECORDED BY YEAR[/TD]
[TD][/TD]
[TD]Date[/TD]
[TD]Max Score[/TD]
[TD]# Players Max score[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Date[/TD]
[TD]Player[/TD]
[TD]Game 1[/TD]
[TD]Game 2[/TD]
[TD]Game 3[/TD]
[TD]Game 4[/TD]
[TD]Game 5[/TD]
[TD]Tie[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]25 Dec 16[/TD]
[TD]Player 13[/TD]
[TD]160[/TD]
[TD]230[/TD]
[TD]360[/TD]
[TD]430[/TD]
[TD]240[/TD]
[TD]60[/TD]
[TD][/TD]
[TD]25 Dec 16[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]25 Dec 16[/TD]
[TD]Player 8[/TD]
[TD]170[/TD]
[TD]220[/TD]
[TD]370[/TD]
[TD]420[/TD]
[TD]230[/TD]
[TD]60[/TD]
[TD][/TD]
[TD]25 Jan 17[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]25 Jan 17[/TD]
[TD]Player 5[/TD]
[TD]180[/TD]
[TD]210[/TD]
[TD]380[/TD]
[TD]410[/TD]
[TD]220[/TD]
[TD]160[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]25 Jan 17[/TD]
[TD]Player 10[/TD]
[TD]190[/TD]
[TD]200[/TD]
[TD]390[/TD]
[TD]400[/TD]
[TD]210[/TD]
[TD]380[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]25 Dec 18[/TD]
[TD]Player 3[/TD]
[TD]24[/TD]
[TD]260[/TD]
[TD]160[/TD]
[TD]2[/TD]
[TD]140[/TD]
[TD]260[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]25 Dec 18[/TD]
[TD]Player 2[/TD]
[TD]14[/TD]
[TD]10[/TD]
[TD]170[/TD]
[TD]1[/TD]
[TD]150[/TD]
[TD]10[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I want to do:
Based on the date, in column J, I want to extract the highest score (column K) and the player (column L). I would also like to know, if there are multiple players with the highest score. Perhaps placing additional players in columns M, N, O, and P.
In other words, I want to specify the data ranges as follows:
Date: $A$3:$A$5000
Scores: $C$3:$H$5000
At the end of our tournament, the only input from me, would be to enter the date 25 Dec 18 into cell J5, and the formula in K5 would tell me the max score for all games played on 25 Dec 2018. The formula in K5 will display the number of players that have that max score, and if there were more than one player to have the same max score, the player name would be displayed in N5, O5, and P5.
Formulas used:
K5 – =Max(if(J5=$A$3:$A$5000,Scores) – Doesn’t work returns max value in scores.
K5 – =INDEX(MAX($$A$3:$A$5000),MATCH(J3,$A$3:$A$5000)) =Doesn’t work returns #REF!
L5 – =COUNTIF(Date,J5) – This only counts the number of times that the date in column A matches the date in column J
Can someone please offer me some direction? I can’t find the ‘key’ to unlock this mystery.
Thanks,
Rod
Thanks,
Rod
First let me give you a little background on my problem. This is my first post in this forum. I have tried to find a solution to my problem by searching the web and several forums. However, I have not found one. I have been able to get some segments to work but need some assistance to finish my creation.
I have three table top Skeeball machines will accommodate two players on each game. The machines keep score for each round of two players, and each Christmas my family has a friendly competition playing Skeeball
I have created several sheets in Excel to generate the tournament brackets, track players, determine winners of each game, and announce the winner of the competition. (With macros to control each function, for adding players, moving data, and printing winner certificates. I want to add a sheet that will store the scores, players, and champion, of each year.
I have a workbook with the following configuration:
Worksheet Name | Contents |
Setup | Setup information Team names / Player names Seed information |
8 Teams / Players 16 Teams / Players | Tournament Bracket |
8 Team Score 16 Team Score | Scores by Team / Player for each round of play First Round Second Round Quarter Final Round Final Round |
Players | Team / Player Names |
Annual Scores | Record of all games played by teams or players |
High Scores | Record of highest scores |
Champions | Record of the champions for each year |
<tbody>
</tbody>
You can see below that; columns A through H contains sample (totally fictitious) scores recorded by year.
[TABLE="width: 996"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[TD]H[/TD]
[TD]I[/TD]
[TD]J[/TD]
[TD]K[/TD]
[TD]L[/TD]
[TD]M[/TD]
[TD]N[/TD]
[TD]O[/TD]
[TD]P[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD="colspan: 8"]SCORES RECORDED BY YEAR[/TD]
[TD][/TD]
[TD]Date[/TD]
[TD]Max Score[/TD]
[TD]# Players Max score[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[TD]Player[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Date[/TD]
[TD]Player[/TD]
[TD]Game 1[/TD]
[TD]Game 2[/TD]
[TD]Game 3[/TD]
[TD]Game 4[/TD]
[TD]Game 5[/TD]
[TD]Tie[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]25 Dec 16[/TD]
[TD]Player 13[/TD]
[TD]160[/TD]
[TD]230[/TD]
[TD]360[/TD]
[TD]430[/TD]
[TD]240[/TD]
[TD]60[/TD]
[TD][/TD]
[TD]25 Dec 16[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]25 Dec 16[/TD]
[TD]Player 8[/TD]
[TD]170[/TD]
[TD]220[/TD]
[TD]370[/TD]
[TD]420[/TD]
[TD]230[/TD]
[TD]60[/TD]
[TD][/TD]
[TD]25 Jan 17[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]25 Jan 17[/TD]
[TD]Player 5[/TD]
[TD]180[/TD]
[TD]210[/TD]
[TD]380[/TD]
[TD]410[/TD]
[TD]220[/TD]
[TD]160[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]25 Jan 17[/TD]
[TD]Player 10[/TD]
[TD]190[/TD]
[TD]200[/TD]
[TD]390[/TD]
[TD]400[/TD]
[TD]210[/TD]
[TD]380[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]25 Dec 18[/TD]
[TD]Player 3[/TD]
[TD]24[/TD]
[TD]260[/TD]
[TD]160[/TD]
[TD]2[/TD]
[TD]140[/TD]
[TD]260[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]25 Dec 18[/TD]
[TD]Player 2[/TD]
[TD]14[/TD]
[TD]10[/TD]
[TD]170[/TD]
[TD]1[/TD]
[TD]150[/TD]
[TD]10[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I want to do:
Based on the date, in column J, I want to extract the highest score (column K) and the player (column L). I would also like to know, if there are multiple players with the highest score. Perhaps placing additional players in columns M, N, O, and P.
In other words, I want to specify the data ranges as follows:
Date: $A$3:$A$5000
Scores: $C$3:$H$5000
At the end of our tournament, the only input from me, would be to enter the date 25 Dec 18 into cell J5, and the formula in K5 would tell me the max score for all games played on 25 Dec 2018. The formula in K5 will display the number of players that have that max score, and if there were more than one player to have the same max score, the player name would be displayed in N5, O5, and P5.
Formulas used:
K5 – =Max(if(J5=$A$3:$A$5000,Scores) – Doesn’t work returns max value in scores.
K5 – =INDEX(MAX($$A$3:$A$5000),MATCH(J3,$A$3:$A$5000)) =Doesn’t work returns #REF!
L5 – =COUNTIF(Date,J5) – This only counts the number of times that the date in column A matches the date in column J
Can someone please offer me some direction? I can’t find the ‘key’ to unlock this mystery.
Thanks,
Rod
Thanks,
Rod