+ Reply to Thread
Results 1 to 11 of 11

Wrestling statistics: Counting Wins & Losses

Hybrid View

DiligentCoach Wrestling statistics:... 01-08-2019, 02:12 PM
AliGW Re: Wrestling statistics:... 01-08-2019, 02:16 PM
DiligentCoach Re: Wrestling statistics:... 01-08-2019, 02:20 PM
AliGW Re: Wrestling statistics:... 01-08-2019, 02:17 PM
CK76 Re: Wrestling statistics:... 01-08-2019, 02:22 PM
DiligentCoach Re: Wrestling statistics:... 01-08-2019, 02:26 PM
AliGW Re: Wrestling statistics:... 01-08-2019, 02:29 PM
DiligentCoach Re: Wrestling statistics:... 01-08-2019, 02:31 PM
CK76 Re: Wrestling statistics:... 01-08-2019, 02:33 PM
DiligentCoach Re: Wrestling statistics:... 01-08-2019, 02:37 PM
CK76 Re: Wrestling statistics:... 01-08-2019, 02:54 PM
  1. #1
    Registered User
    Join Date
    01-08-2019
    Location
    Michigan
    MS-Off Ver
    Office 2016
    Posts
    5

    Wrestling statistics: Counting Wins & Losses

    I'm struggling with a formula to count wins and losses for my wrestlers. I swear I've seen this before, but can't replicate it. I've tried combinations of vlookup and countif, but can't get it to work. I need totals for wins, losses, takedowns, then just simply display the fastest pin time.

    Is anyone able to assist me with this? I've attached a redacted spreadsheet, and the totals are needed in the box at the bottom.

    EDIT - I think I did the upload correct. Let me know if it doesn't show up.
    Attached Files Attached Files

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,536

    Re: Wrestling statistics: Counting Wins & Losses

    You are going to need to explain how a pin is calculated - it's not clear on your sheet. You did not include any sample results, manually calculated, so there will be some guesswork here unless you clarify.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  3. #3
    Registered User
    Join Date
    01-08-2019
    Location
    Michigan
    MS-Off Ver
    Office 2016
    Posts
    5

    Re: Wrestling statistics: Counting Wins & Losses

    There are two versions of a win/loss shown. One is a point value, ie "10-5". The other, a 'pin', is displayed in time format, ie "1:19". Column D contains both these versions. There can be an extra column added to make the formula easier if needed.

    Fastest pin is simply the lowest time amount. So for example, :31 in row 42 shows the wrestler pinned his opponent in 31 seconds. In row 39, the 3:02 shows that the wrestler pinned his opponent in 3 minutes and 2 seconds. Fastest pin is obviously the lesser amount of time.

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,536

    Re: Wrestling statistics: Counting Wins & Losses

    Wins:

    =COUNTIFS($B$5:$B$47,"Won",$A$5:$A$47,A53)

    Losses:

    =COUNTIFS($C$5:$C$47,"Lost",$A$5:$A$47,A53)

    Takedowns:

    =SUMIFS($E$5:$E$47,$A$5:$A$47,A53)

    Pins:

    No clue - sorry!
    Last edited by AliGW; 01-08-2019 at 02:22 PM.

  5. #5
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Wrestling statistics: Counting Wins & Losses

    Fastest pin, is bit of an issue as you don't have consistent format in D column. What should be value returned for Wrestler C and Wrestler J for an example?

    For wins and losses. Enter in B53: =COUNTIFS($A$5:$A$47,$A53,B$5:B$47,"<>")
    Copy down and across.

    For take downs, I'm assuming you want SUM.
    In E53: =SUMIF($A$5:$A$47,$A53,$E$5:$E$47)
    Copy down.
    "Progress isn't made by early risers. It's made by lazy men trying to find easier ways to do something."
    ― Robert A. Heinlein

  6. #6
    Registered User
    Join Date
    01-08-2019
    Location
    Michigan
    MS-Off Ver
    Office 2016
    Posts
    5

    Re: Wrestling statistics: Counting Wins & Losses

    If all the pins were in a dedicated column, would there be a solution?

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,536

    Re: Wrestling statistics: Counting Wins & Losses

    Any chance of telling those of us who don't know exactly what a pin is what it is and where to find the data in your table? Were the formulae I gave you of any use at all?

  8. #8
    Registered User
    Join Date
    01-08-2019
    Location
    Michigan
    MS-Off Ver
    Office 2016
    Posts
    5

    Re: Wrestling statistics: Counting Wins & Losses

    Yes, the formulas you provided worked perfectly. I'm trying to see if the "IFS" function can be applied to pins.

    In wrestling, the match lasts 6 minutes. Either the wrestlers go the entire time and one wins by points(10-2 or 12-6, etc), or one wrestler pins the other, and the match ends early(:13). 13 second pin is rare, but it happens.

  9. #9
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Wrestling statistics: Counting Wins & Losses

    Yes, that would simplify things. You can then just use Aggregate function, MIN(IF()) array or MINIFS (only for Office 2019, or Office 365 subscriber).

    Ex: Assuming Column D holds Pins Time only.
    In D53: =AGGREGATE(15,6,($D$5:$D$47)/($A$5:$A$47=$A53),1)
    Copy down.

    Edit: See attached incorporating 6:00 when won with decision. And "N/A" when no wins recorded.
    Attached Files Attached Files
    Last edited by CK76; 01-08-2019 at 02:42 PM.

  10. #10
    Registered User
    Join Date
    01-08-2019
    Location
    Michigan
    MS-Off Ver
    Office 2016
    Posts
    5

    Re: Wrestling statistics: Counting Wins & Losses

    That works. Unfortunately it also counts the pins for when that wrestler has LOST. Is there a way to use an IF function with the AGGREGATE function so that the fastest pin is only counted when the wrestler won?

  11. #11
    Forum Expert CK76's Avatar
    Join Date
    06-16-2015
    Location
    ONT, Canada
    MS-Off Ver
    MS365 Apps for enterprise
    Posts
    5,973

    Re: Wrestling statistics: Counting Wins & Losses

    See the edit in previous post.

+ 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. Statistics help
    By aharmel1 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-29-2018, 06:10 PM
  2. Statistics.
    By Panisher21 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-25-2018, 04:30 PM
  3. Replies: 1
    Last Post: 07-20-2012, 06:55 AM
  4. Statistics
    By chiller in forum Excel General
    Replies: 6
    Last Post: 05-23-2010, 10:11 AM
  5. p-value, statistics
    By wim rademakers in forum Excel General
    Replies: 1
    Last Post: 01-17-2006, 10:30 PM
  6. Wrestling with this VBA code
    By EMoe in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-18-2005, 04:47 PM
  7. How can I automate a 16 man wrestling bracket in Excell.
    By Bob Imhof in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-12-2005, 03:06 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