Forum Discussion
fensterbos
Nov 01, 2022Copper Contributor
Tennis doubles win percentage table help
My club is in a tennis league and we regularly play matches with different partners. I would like to create a table that automatically combines the data so we can learn which two-player teams have th...
OliverScheurich
Nov 01, 2022Gold Contributor
=(COUNTIFS($A$2:$A$10,B14,$B$2:$B$10,A14,$F$2:$F$10,"Loss")+COUNTIFS($A$2:$A$10,A14,$B$2:$B$10,B14,$F$2:$F$10,"Win"))/(COUNTIFS($A$2:$A$10,A14,$B$2:$B$10,B14)+COUNTIFS($A$2:$A$10,B14,$B$2:$B$10,A14))You can try this formula.
- mtarlerNov 01, 2022Silver ContributorThis should work also but I think you need to swap your "Loss" to "Win"