hello,
I have a Basketball Stats sheet, and I would like to be able to create a section on the same sheet that lists the player initials based on the rank of their stat in a given criteria/column.
Per the below screenshot as an example, I have 17 players listed in Column A.
Columns B, C & D are examples of the Stat Types (in this case, respectively their Attempts, Makes & successful %).
My Stat Types are predominantly of integers, decimals or percentage (although positive & negatives values are a possibility). Importantly, duplicate values are common.
Objective: In the section below each Stat Type (called Rank within Team as seen in the screenshot) I want to be able to list each players initials in order based on the rank of that given Stat Type.
So as you can see below, NT is first based on 2PA and 2PM, but IOP is first based on 2P% (as expected).
The Stat Type of greatest importance to me will typically be the % column, and it would be great to be able to use the 2PA and/or 2PM values as additional criteria to break ties on duplicates found in 2P% (i.e. the higher 2PA or 2PM would rank higher in the tie breaker).
Now I did find on MrExcel the following formula that almost does what I need...
=INDEX(A:A,MATCH(LARGE(B:B,1),B:B,0)) -- (as found on Return text value from Col A, based on Rank From Col B)
... but it does not manage/persist with duplicate values.
That is, the LARGE function continues to return the text based on the first True value it finds, and ignores the duplicates.
The below screenshot leverages the above suggested formula, and in the spreadsheet, cell B21 below has the following adaptation --> =INDEX($A$2:$A$18,MATCH(LARGE(B$2:B$18,$A21),B$2:B$18,0))
Request:
1. Guidance on how to enhance =INDEX($A$2:$A$18,MATCH(LARGE(B$2:B$18,$A21),B$2:B$18,0)) so that it will manage/persist through duplicates.
and/or
2. In case I'm over complicating this, advise on a better way/formula list the initials in the sub-section "Rank within Team" based on their rank within the given Stat Type, including tie-breaking formula (perhaps with something like COUNTIFS ?)
thanks!
I have a Basketball Stats sheet, and I would like to be able to create a section on the same sheet that lists the player initials based on the rank of their stat in a given criteria/column.
Per the below screenshot as an example, I have 17 players listed in Column A.
Columns B, C & D are examples of the Stat Types (in this case, respectively their Attempts, Makes & successful %).
My Stat Types are predominantly of integers, decimals or percentage (although positive & negatives values are a possibility). Importantly, duplicate values are common.
Objective: In the section below each Stat Type (called Rank within Team as seen in the screenshot) I want to be able to list each players initials in order based on the rank of that given Stat Type.
So as you can see below, NT is first based on 2PA and 2PM, but IOP is first based on 2P% (as expected).
The Stat Type of greatest importance to me will typically be the % column, and it would be great to be able to use the 2PA and/or 2PM values as additional criteria to break ties on duplicates found in 2P% (i.e. the higher 2PA or 2PM would rank higher in the tie breaker).
Now I did find on MrExcel the following formula that almost does what I need...
=INDEX(A:A,MATCH(LARGE(B:B,1),B:B,0)) -- (as found on Return text value from Col A, based on Rank From Col B)
... but it does not manage/persist with duplicate values.
That is, the LARGE function continues to return the text based on the first True value it finds, and ignores the duplicates.
The below screenshot leverages the above suggested formula, and in the spreadsheet, cell B21 below has the following adaptation --> =INDEX($A$2:$A$18,MATCH(LARGE(B$2:B$18,$A21),B$2:B$18,0))
Request:
1. Guidance on how to enhance =INDEX($A$2:$A$18,MATCH(LARGE(B$2:B$18,$A21),B$2:B$18,0)) so that it will manage/persist through duplicates.
and/or
2. In case I'm over complicating this, advise on a better way/formula list the initials in the sub-section "Rank within Team" based on their rank within the given Stat Type, including tie-breaking formula (perhaps with something like COUNTIFS ?)
thanks!