miles00577
New Member
- Joined
- Aug 21, 2008
- Messages
- 18
I have compiled a list of game scores for different sports for an athletic program.
In Column J, I have where the game was played (Home = H/Away = A/Neutral = N)
In Column K, I have if the game was a conference game (Y/N)
In Column L, it lists if the game was a win/loss/tie (W/L/T)
I've got coding to work in Columns AM and AN to tabulate consecutive winning/losing streaks using the IF statement, using the following:
In Cell AM3, I have the following: =IF(L3="W",1,IF(L3="L",0,IF(L3="","",0)))
In Cell AN3, I have the following: =IF(AM3<>"",IF(AM3=0,0,AN2+1),"")
This coding works perfect for tabulating the overall streaks, but obviously if I create a column for just home games, it's going to leave blanks and reset the streak if a game wasn't at home. I want to be able to go much deeper into the numbers to find winning/losing streaks for home or away, conference and non-conference, conference home or away, non-conference home and away, etc. Can someone point me in the right direction?
In Column J, I have where the game was played (Home = H/Away = A/Neutral = N)
In Column K, I have if the game was a conference game (Y/N)
In Column L, it lists if the game was a win/loss/tie (W/L/T)
I've got coding to work in Columns AM and AN to tabulate consecutive winning/losing streaks using the IF statement, using the following:
In Cell AM3, I have the following: =IF(L3="W",1,IF(L3="L",0,IF(L3="","",0)))
In Cell AN3, I have the following: =IF(AM3<>"",IF(AM3=0,0,AN2+1),"")
This coding works perfect for tabulating the overall streaks, but obviously if I create a column for just home games, it's going to leave blanks and reset the streak if a game wasn't at home. I want to be able to go much deeper into the numbers to find winning/losing streaks for home or away, conference and non-conference, conference home or away, non-conference home and away, etc. Can someone point me in the right direction?