Current consecutive streak

S

scott

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
 
K

Ken Dales

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(G12>0,F12,"")
 
S

scott

Thanks for help. I used = IF(F12="","",IF(F12=F11,G11+1,1)) because the
streak will always be > 0
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top