+ Reply to Thread
Results 1 to 9 of 9

Recording Win Loss Results

  1. #1
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Recording Win Loss Results

    In the attached file I want to produce a listing of the win-loss record by season, the win-loss record by win streak and a display of the year (season) record for each year.

    I have a formula that will return the overall record but I am having problems breaking up the results into their respective categories.

    Jim O
    Attached Files Attached Files
    Last edited by JO505; 09-13-2013 at 11:29 AM.

  2. #2
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Recording Win Loss Results

    For Excel 2007 or higher you can try

    O3
    =COUNTIFS(D:D,N3,G:G,"W")&" - "&COUNTIFS(D:D,N3,H:H,"L")
    copy down

    For all versions

    O3
    =SUMPRODUCT(--($D$3:$D$200=N3),--($G$3:$G$200="W"))&" - "&SUMPRODUCT(--($D$3:$D$200=N3),--($H$3:$H$200="L"))
    copy down
    Marcelo Branco

  3. #3
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Re: Recording Win Loss Results

    micb,

    Thanks for the response. That works fine for the summary by year part. Any ideas for the win-loss by season or winning streak columns (I & K)?

    Jim O

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Recording Win Loss Results

    In I3
    =COUNTIFS($D$3:$D3,$D3,$G$3:$G3,"W")&" - "&COUNTIFS($D$3:$D3,$D3,$H$3:$H3,"L")

    In K3
    =IF(G3="",0,M2+1)
    format cells as 0"-0";;
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  5. #5
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Re: Recording Win Loss Results

    Ace_XL,

    The formula for the season record works as desired but the winning streak record is not working properly. In the formula you have a reference to "M2+1" what does that do? I am getting results of 1 - 0 for all values.

    Jim O

  6. #6
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Recording Win Loss Results

    Oops ..should be

    In K3
    =IF(G3="",0,K2+1)
    copy down
    format cells as 0"-0";;

  7. #7
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Re: Recording Win Loss Results

    Ace,

    Thanks. That works better but.. I put the formula in cell K3 and drag it down, cells K4 & K5 return a #value error and the rest seem to be okay. Changing the W to L in cell G3 clears the #value error. I am curious as to what is happening?

    Jim O

  8. #8
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: Recording Win Loss Results

    Ok..

    In K3
    =IF(G3="",0,1)

    In K4
    =IF(G4="",0,K3+1)
    Copy down

  9. #9
    Forum Contributor
    Join Date
    05-10-2011
    Location
    Central Ohio
    MS-Off Ver
    Excel 2000, and 2010
    Posts
    654

    Re: Recording Win Loss Results

    Ace,

    Thanks for the time and input.

    Another workaround solution I tried is to use the number 0 as a column header. Then use only one formula.

    Again thanks.

    Jim O

+ 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. Replies: 0
    Last Post: 08-09-2012, 07:56 PM
  2. Find and Replace results in formatting loss - please help
    By chekhov_neo in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-06-2010, 06:06 AM
  3. Inserting high quality images results in information loss
    By ChrisOlekas in forum Excel General
    Replies: 1
    Last Post: 10-01-2007, 01:33 PM
  4. Recording Multiple Function Results
    By zealot in forum Excel General
    Replies: 4
    Last Post: 12-07-2006, 11:45 AM
  5. Recording incidences of results of a RAND() fucntion.
    By BaldySlaphead in forum Excel General
    Replies: 1
    Last Post: 07-15-2005, 11:05 AM

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