Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How would I figure out the current winning or losing streak of a W/L
column? The W/L column is in F11:F17 and any unplayed games have a value of " " based on lookup formula |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Put zero in G11 and a formula like this in G12 (then copy
it in the cells below): = IF(F12="","",IF(F12=F11,G11+1,"0")) This counts consecutive identical entries but does not indicate "won" or "lost" - to add that you could use column H (so put this in H:12): = IF(G120,F12,"") -----Original Message----- How would I figure out the current winning or losing streak of a W/L column? The W/L column is in F11:F17 and any unplayed games have a value of " " based on lookup formula . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for help. I used = IF(F12="","",IF(F12=F11,G11+1,1)) because the
streak will always be 0 Ken Dales wrote: Put zero in G11 and a formula like this in G12 (then copy it in the cells below): = IF(F12="","",IF(F12=F11,G11+1,"0")) This counts consecutive identical entries but does not indicate "won" or "lost" - to add that you could use column H (so put this in H:12): = IF(G120,F12,"") -----Original Message----- How would I figure out the current winning or losing streak of a W/L column? The W/L column is in F11:F17 and any unplayed games have a value of " " based on lookup formula . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Counting current streak | Excel Worksheet Functions | |||
calculating longest winning/losing streak and totals | Excel Worksheet Functions | |||
Counting current winning streak | Excel Worksheet Functions | |||
longet Win streak | Excel Worksheet Functions | |||
Winning Streak | Excel Worksheet Functions |