+ Reply to Thread
Results 1 to 2 of 2

Win/Loss CURRENT streak formula for standings

  1. #1
    Registered User
    Join Date
    10-15-2011
    Location
    scranton pa
    MS-Off Ver
    Excel 2007
    Posts
    15

    Win/Loss CURRENT streak formula for standings

    Hi- I have an easy request, just can't figure out a simple formula. I would like to create a CURRENT win/loss streak columns just like if you were looking at baseball/football standings.

    I attached the spread sheet I am working on:

    --"Standings" tab is where I want to see the data in the "STRK" column.
    --"master schedule" is where the data will be pulled from. Column I represents the wins & column K represents the loses. I filled out some wins/loses just to have the data for trail purposes.

    Ideally I would love to have to W# L# just like standing if you but I would take -3 or 4 for to represent W or L (if that makes sense)

    thank you in advance for the help

    Jason
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    10-10-2016
    Location
    Sheffield
    MS-Off Ver
    365 and rarely 2016
    Posts
    3,212

    Re: Win/Loss CURRENT streak formula for standings

    Not such a simple formula!

    I decided to find the row of the last win and the row of the last loss

    last win k3
    =SUMPRODUCT(MAX(ROW('Master Schedule'!$I$4:$I$59)*('Master Schedule'!$I$4:$I$59=$I3)))

    last loss
    =SUMPRODUCT(MAX(ROW('Master Schedule'!$I$4:$I$59)*('Master Schedule'!$K$4:$K$59=$I3)))

    which ever is largest is the last result. so we know if the streak is wins or losses

    so in the above k3 is 31 and k4 is 35, so the last result is a loss.

    we need to find the losses where the team is the team of interest and the row number is > the row number of the last win

    in g3 the result you want in the table
    =IF(K3>L3,SUMPRODUCT((ROW('Master Schedule'!$I$4:$I$59)>L3)*('Master Schedule'!$I$4:$I$59=$I3))&"W",SUMPRODUCT((ROW('Master Schedule'!$I$4:$I$59)>K3)*('Master Schedule'!$K$4:$K$59=$I3))&"L")

    I hope that makes sense

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Longest streak and current streak if data are placed in two columns
    By Lehoi in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 10-06-2016, 01:29 AM
  2. Current Streak (Win, Loss or Draw) formula needed?
    By buttsy00 in forum Excel Formulas & Functions
    Replies: 13
    Last Post: 04-12-2015, 06:51 AM
  3. Last X games, Max Win and Loss streak, current streak with Excel formulas
    By Biogeek1 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-12-2013, 11:00 AM
  4. [SOLVED] Consecutive win/loss and current win/loss streak
    By TK2013 in forum Excel Formulas & Functions
    Replies: 16
    Last Post: 09-18-2013, 09:15 AM
  5. Replies: 7
    Last Post: 08-03-2013, 09:51 AM
  6. Replies: 0
    Last Post: 08-09-2012, 07:56 PM
  7. CURRENT Win/Loss Streak
    By lil_ern63 in forum Excel General
    Replies: 14
    Last Post: 10-19-2011, 06:54 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1