I have the multiple sheets that look like this (all are similar: Week 1, week 2, etc.)
I want to build a table like this
For each person, I am interesting in calculating if they picked each team correctly or not. For example, Alex would be 0-1 for UTEP and Jax St and 1-0 for LT and FIU for the week show at the top. But I want to calculate this across all the sheets. Presently I do these by some very cuberson add on rows at the bottom. Keep in mind teams can play more than once in one week (due to the way we pick them). Also I want to do this across all the sheets (Week 1 through Week 18)
For example, in the above table I use the following to calculate the teams win column records across all the sheets.
=SUMPRODUCT(COUNTIF(INDIRECT("'"&cweek&"'!j4:j100"),C6))
Where cweek ='NCAA Team by Team'!$B$149:INDIRECT("B"&TEXT(148+'NCAA Team by Team'!$G$149,0)) This selects only the weeks that have been played so far
I am looking for some similar formula that can calculate the player records
The Team win loss is easy as I only have to count the occurrences in the J columns. But for player win/loss that is tougher as I need to compare Columns J to the Players column and to either column E or F for the team that lost and doesn’t not show up in column J.
Is that as clear as mud??? Appreciate any help!!
I want to build a table like this
For each person, I am interesting in calculating if they picked each team correctly or not. For example, Alex would be 0-1 for UTEP and Jax St and 1-0 for LT and FIU for the week show at the top. But I want to calculate this across all the sheets. Presently I do these by some very cuberson add on rows at the bottom. Keep in mind teams can play more than once in one week (due to the way we pick them). Also I want to do this across all the sheets (Week 1 through Week 18)
For example, in the above table I use the following to calculate the teams win column records across all the sheets.
=SUMPRODUCT(COUNTIF(INDIRECT("'"&cweek&"'!j4:j100"),C6))
Where cweek ='NCAA Team by Team'!$B$149:INDIRECT("B"&TEXT(148+'NCAA Team by Team'!$G$149,0)) This selects only the weeks that have been played so far
I am looking for some similar formula that can calculate the player records
The Team win loss is easy as I only have to count the occurrences in the J columns. But for player win/loss that is tougher as I need to compare Columns J to the Players column and to either column E or F for the team that lost and doesn’t not show up in column J.
Is that as clear as mud??? Appreciate any help!!