+ Reply to Thread
Results 1 to 13 of 13

Dart Stats Sheet

  1. #1
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7

    Dart Stats Sheet

    This is my scenario.

    I am captain of a Dart Team in 2 different leagues. I have a excel spreadsheet that does some calculation for me (Wins, Losses, Percentage) when I manually enter the numbers. I have just created a workbook with multiple worksheets for each week of the season, including playoffs, and a sheet for overall and print. I want to be able to input the data for each week and have it auto calculate on the overall page and auto populate the print page. The overall page will have all the stats, wins singles games, wins doubles games and wins 3 man games, along with percentage in each category. I am pretty sure I can accomplish this task. The problems I am having is:

    1. Adding wins and losses based on player number, I have one cell with a players number and I will put a 1 or 0 in that cell based on a win or loss. Off to the side I have the player roster with card numbers and a win column and loss column. I would like excel to see the 1 or 0 in the main column and add the appropriate to the roster column, calculating total for the night. Then adding that to the overall page.

    2. The print page, I want a easy to read page that displays each players, wins and losses for each category described earlier and averages through each week displayed nicely to distribute each week. Would I have to export that page to word? I want to display wins and losses as 14-7 without it calculating it.

    If someone can point me in the right direction that would be awesome. I can do simple stuff in excel, never had to do anything like this before, wanted to do it for a while and just didn't know where to start. What formulas to look up, not familiar enough with the nomenclature to look for the correct functions to accomplish this task, or if it's even possible.
    Last edited by bmgaspard; 02-05-2009 at 10:24 AM.

  2. #2
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561
    Hey there,

    Perhaps you could post what you have (with the majority of the data taken out to reduce size) your description is a little too abstract to make suggestions from.

    If you want things to search for, the COUNTIF and SUMIF functions will both solve your first question.

    The second question is normally achieved by restructuring your data and creating a pivot table, but this may not be worth it as your data is disparate across many sheets. Again, summary functions like countif/sumif and perhaps lookups (vlookup, hlookup, lookup, index, match) will probably be of use.

    HTH

  3. #3
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7
    I have attached the xls. All of the week sheets and playoff sheets is the league format, where I will input the results each night. The overall sheet shows me who is doing what on my team. The print sheet will be a report for each individual player each week. I have a drop down menu in there to select each players name and it will input their data in the appropriate cells (Trying to figure that out as well.) The list sheet will be the global data sheet with all the stats calculated and pulled from. I hope I have this setup right. One issue I am thinking I will have, correct me if I'm wrong, with weeks alternating Home and Away I couldn't pull stats from the same cells on each page, will that be a problem?
    Attached Files Attached Files

  4. #4
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561
    big... I'm going to have to come back to this later today when I have a little more time.

    My toes are too small to tread on, anyone else who feels inclined.

    CC

  5. #5
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7

    Thanks

    Hey man,

    Actually I am getting it, the sumif and countif works wonders. I am getting the major part down, just a few minor things I might need help with.

    For instance, on the Print Sheet, I have a drop down menu with the players names using a range. I want to select a name with the drop down menu and have it populate the List sheet with all the data. Is this possible using a Data Validation list, or do I need to use something else or is it even possible? I can do it with more work, but looking for something easier.

    But thanks again man, those two terms helped me out a bunch.

  6. #6
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7

    Records

    One more question. If I want to display a players wins and losses in one cell as say 14-3 (14 wins with 3 losses) and the data comes from 2 different cells. How would I perform that without it being subtracted? I have attached what I have worked on so far, have some more work to do, but you will get the idea. Eyes were getting tired.
    Attached Files Attached Files
    Last edited by bmgaspard; 01-22-2009 at 01:20 AM.

  7. #7
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561
    I'm not sure what you want to see, so I've answered two possible interpretations:

    Option 1: Want to see net difference:
    Put =<wins>-<losses> (i.e. pointing to cell references) in the cell, then applying custom number formatting thus: (select cell, Ctrl+1, number, custom, paste in)
    # "W";# "L";"evens"
    The help on custom number formats will explain how this works

    Option 2: Want to see both numbers in ratio
    Put =<wins>&":"&<losses>

    HTH

    PS As a general tip (as has been shown here - breaking your questions up a bit helps people to help you - I think we might all be a bit ADD...)
    Last edited by Cheeky Charlie; 01-22-2009 at 05:28 AM. Reason: good at speling...

  8. #8
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7
    I can't get the last one to work, maybe something I am wrong. In any of the Week pages, columns E & F 7-15 and J & K 7-15 totals each players wins and losses. I want to take the win column and the loss column for each player combine them into one cell displayed as Wins - Losses without any calculation.

    Example
    W L
    3 1

    Each in different cell, displays as 3 - 1 in a cell on the print page.

    I tried the formatting you told me to do and it displays "evens" in the cell.

  9. #9
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7
    Sorry, I wasn't pointing it to the page with the data, I figured that out, except it's only displaying #"W" value, not #"L".

  10. #10
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561
    You need the second thing - the first is very clever, but not neccessary - try this:
    =A1&" - "&B1
    Where A1 contains wins and B1 contains losses

    HTH

    PS the first option gives a net score - i.e. wins-losses, if there are more wins, it puts a W after, more losses it puts an L after, evens, it says "evens" - try it and see what happens when you change the win and loss totals - like I said, clever, but not what you wanted
    Last edited by Cheeky Charlie; 01-22-2009 at 02:44 PM. Reason: PS

  11. #11
    Registered User
    Join Date
    01-20-2009
    Location
    New Orleans, LA
    MS-Off Ver
    Excel 2007
    Posts
    7
    Works great. Just wish there was an easier way to do the other stuff, But oh well I am having fun with this, thanks a bunch. I have been using excel since office 95 or 98 somewhere around there, doing simple calculations. I have learned more about excel in the past couple days with your help than I have learned in the many years prior. Thanks again! I have several more cells to fill, so I'm sure I will be picking your brain before I am done.
    Last edited by bmgaspard; 01-23-2009 at 08:52 AM.

  12. #12
    Registered User
    Join Date
    02-10-2013
    Location
    Philadelphia Pa
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Dart Stats Sheet

    Is there any way you still have this spreadsheet? I am trying to put one together for my dart team and I am ignorant as far as excel is concerned. If you could that would a great help! Thanks either way!
    Quote Originally Posted by bmgaspard View Post
    This is my scenario.

    I am captain of a Dart Team in 2 different leagues. I have a excel spreadsheet that does some calculation for me (Wins, Losses, Percentage) when I manually enter the numbers. I have just created a workbook with multiple worksheets for each week of the season, including playoffs, and a sheet for overall and print. I want to be able to input the data for each week and have it auto calculate on the overall page and auto populate the print page. The overall page will have all the stats, wins singles games, wins doubles games and wins 3 man games, along with percentage in each category. I am pretty sure I can accomplish this task. The problems I am having is:

    1. Adding wins and losses based on player number, I have one cell with a players number and I will put a 1 or 0 in that cell based on a win or loss. Off to the side I have the player roster with card numbers and a win column and loss column. I would like excel to see the 1 or 0 in the main column and add the appropriate to the roster column, calculating total for the night. Then adding that to the overall page.

    2. The print page, I want a easy to read page that displays each players, wins and losses for each category described earlier and averages through each week displayed nicely to distribute each week. Would I have to export that page to word? I want to display wins and losses as 14-7 without it calculating it.

    If someone can point me in the right direction that would be awesome. I can do simple stuff in excel, never had to do anything like this before, wanted to do it for a while and just didn't know where to start. What formulas to look up, not familiar enough with the nomenclature to look for the correct functions to accomplish this task, or if it's even possible.

  13. #13
    Registered User
    Join Date
    03-20-2013
    Location
    Fall River, MA
    MS-Off Ver
    Office 2010
    Posts
    3

    Re: Dart Stats Sheet

    Quote Originally Posted by Cheeky Charlie View Post
    You need the second thing - the first is very clever, but not neccessary - try this:
    =A1&" - "&B1
    Where A1 contains wins and B1 contains losses

    HTH

    PS the first option gives a net score - i.e. wins-losses, if there are more wins, it puts a W after, more losses it puts an L after, evens, it says "evens" - try it and see what happens when you change the win and loss totals - like I said, clever, but not what you wanted

    I know this is old, but this can also be done using 'CONCATENATE'. In the target cell, =Concatenate(a1," - ", b1)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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