+ Reply to Thread
Results 1 to 10 of 10

formula to get the name of the next player with the same score

Hybrid View

aydaria formula to get the name of... 08-30-2012, 02:40 AM
vlady Re: formula to get the name... 08-30-2012, 03:36 AM
aydaria Re: formula to get the name... 09-05-2012, 10:33 PM
dilipandey Re: formula to get the name... 08-30-2012, 03:37 AM
aydaria Re: formula to get the name... 09-05-2012, 10:38 PM
zbor Re: formula to get the name... 08-30-2012, 03:57 AM
aydaria Re: formula to get the name... 09-05-2012, 10:41 PM
dilipandey Re: formula to get the name... 09-06-2012, 03:17 AM
aydaria Re: formula to get the name... 09-06-2012, 03:39 AM
dilipandey Re: formula to get the name... 09-06-2012, 03:45 AM
  1. #1
    Registered User
    Join Date
    08-12-2012
    Location
    Makati City, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    5

    Question formula to get the name of the next player with the same score

    Good day,

    In the attached file on the 'Game Record' scoresheet, I have to list the top 3 players individual high score for the game.
    Notice that in cell L27-L29, three players got the same score of 141. To get the players name, I used the formula:

    =INDEX('Player Score'!C6:C113,MATCH(L27,('Player Score'!B6:B113='Player Score'!D119)*'Player Score'!DY6:DY113,0))

    This formula is fine if there were no players having the same score, now as in the example attached, this formula will get the
    value 'Tess' for K27, K28 and K29.

    How do I get the name of the next player with the same score?

    Thanks.
    Attached Files Attached Files

  2. #2
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: formula to get the name of the next player with the same score

    in K25

    =INDEX('Player Score'!C6:C113,SMALL(IF('Player Score'!$DY$6:$DY$113=L25,ROW('Player Score'!$DY$6:$DY$113)-ROW('Player Score'!DY6)+1),COUNTIF($L$25:$L25,$L25)))
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  3. #3
    Registered User
    Join Date
    08-12-2012
    Location
    Makati City, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: formula to get the name of the next player with the same score

    couple of questions for Vlady:

    1. What do this line do? COUNTIF($L$25:$L25,$L25)
    2. How do I add this line to the formula for filtering out male and female?
    'Player Score'!$B$6:$B$113='Player Score'!$D$199

  4. #4
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: formula to get the name of the next player with the same score

    Hi aydaria,

    Try using below formula:-
    Formula: copy to clipboard

    {=INDEX('Player Score'!$C$5:$C$114,SMALL(IF('Player Score'!$DY$5:$DY$114='Game Record'!$L27,ROW('Player Score'!$DY$5:$DY$114)-4,""),ROW($A1)),1)}


    See attached- ScoreboardDummy.xlsx

    regards,
    DILIPandey

    <click on below 'star' if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), dilipandey@gmail.com

  5. #5
    Registered User
    Join Date
    08-12-2012
    Location
    Makati City, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: formula to get the name of the next player with the same score

    Hi Dilipandey,

    My final intention is to have a single formula from K25-K29, but it's not getting the correct values for K25, what can I change there?

  6. #6
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,028

    Re: formula to get the name of the next player with the same score

    First, you should use $ sign around cells.
    Must be hard write formula your way....

    Formula: copy to clipboard
    =LARGE(('Player Score'!$B$6:$B$113='Player Score'!D118)*'Player Score'!$DY$6:$DY$113,1)


    Second in array use IF instead of * (in this case).
    Otherwise errors will appear.

    Formula: copy to clipboard
    =LARGE(IF('Player Score'!$B$6:$B$113='Player Score'!$D$118,'Player Score'!$DY$6:$DY$113),ROW(A1))

    (I've also changed 1 to ROW(A1)

    Here, I've also adopted your formula...
    Please note that you'll have now results 141,03...
    But change it to show 0 decimals and you will again see 141...
    Attached Files Attached Files
    Never use Merged Cells in Excel

  7. #7
    Registered User
    Join Date
    08-12-2012
    Location
    Makati City, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: formula to get the name of the next player with the same score

    Hi Zbor,

    What's the use of this line in the formula? +COUNTIF(BI$6:BK6,MAX(BI6:BK6))/100

  8. #8
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: formula to get the name of the next player with the same score

    Hi aydaria,

    Hi Dilipandey,
    My final intention is to have a single formula from K25-K29, but it's not getting the correct values for K25, what can I change there?
    Try using below formula:-

    {=INDEX('Player Score'!$C$5:$C$114,SMALL(IF('Player Score'!$DY$5:$DY$114='Game Record'!$L22,ROW('Player Score'!$DY$5:$DY$114)-4,""),COUNTIF(L22:L$29,L22)),1)}

    See attached:- ScoreboardDummy.xlsx

    Regards,
    DILIPandey

    <click on below 'star' if this helps>

  9. #9
    Registered User
    Join Date
    08-12-2012
    Location
    Makati City, Philippines
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: formula to get the name of the next player with the same score

    I got it now, thanks to all of you.

  10. #10
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: formula to get the name of the next player with the same score

    You are welcome aydaria.. Cheers

    regards,
    DILIPandey

    <click on below 'star' if this helps>

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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