Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Current consecutive streak

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Current consecutive streak

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Current consecutive streak

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Counting current streak Renan Germano Excel Worksheet Functions 6 January 15th 10 06:55 PM
calculating longest winning/losing streak and totals yowzers Excel Worksheet Functions 8 December 17th 09 12:13 AM
Counting current winning streak Scopar Excel Worksheet Functions 2 March 5th 08 05:50 AM
longet Win streak ParTeeGolfer Excel Worksheet Functions 6 January 9th 05 12:12 PM
Winning Streak ParTeeGolfer Excel Worksheet Functions 4 December 31st 04 11:08 PM


All times are GMT +1. The time now is 01:45 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"