I am part of a betting syndicate at work where we pick football teams to win their match every weekend. I keep a spreadsheet of the results and want to find the most picked team by each tipper and wondered if it was possible for it to show multiple answers in the same cell if there were multiple teams picked the same amount of times. If there was no team a tipper had picked multiple times then I would like it to show "all unique" or similar. I can get the most picked team but can't get it to show multiple teams or the "all unique" scenario.
I would also like to see the top 3 most successful picks and the 3 least successful picks for the group as a whole but I am not sure how to do this.
For my first problem, the most picked teams by tipster, (using Matthew as the example) I am using the following formula to return the most picked team. I am not sure how to return multiple answers in the same cell or show that all picks are unique:
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$E11:$E108756="Matthew",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
For my second problem, the most and least successful teams picked by the group as a whole, I have used the following formula to return the most picked winning team and most picked losing team. "Y" is for a winning bet and "N" is for a losing bet:
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$P11:$P108756="Y",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$P11:$P108756="N",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
For all formulas column E is the tipper name, column H is the teams picked and column P is whether the pick won or not ("Y" or "N").
Thank you
I would also like to see the top 3 most successful picks and the 3 least successful picks for the group as a whole but I am not sure how to do this.
For my first problem, the most picked teams by tipster, (using Matthew as the example) I am using the following formula to return the most picked team. I am not sure how to return multiple answers in the same cell or show that all picks are unique:
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$E11:$E108756="Matthew",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
For my second problem, the most and least successful teams picked by the group as a whole, I have used the following formula to return the most picked winning team and most picked losing team. "Y" is for a winning bet and "N" is for a losing bet:
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$P11:$P108756="Y",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
=INDEX(Bets!$H11:$H108756,MODE(IF(Bets!$P11:$P108756="N",IF(Bets!$H11:$H108756<>"",MATCH(Bets!$H11:$H108756,Bets!$H11:$H108756,{0,0})))))
For all formulas column E is the tipper name, column H is the teams picked and column P is whether the pick won or not ("Y" or "N").
Thank you