Hi all,
I'm trying to figure out how to get the names of the Top 3 highest values without duplicating names, but allowing duplicate values.
I have a list of (often repeating) names in table column [Last, First]. I have a single value relating to each name in table column [Used]. I have =SUMIF(Last, First],[@[Last, First]],[Used]) resulting in the sum of each name's used in the table column [Individual's Total].
I would like to pull the highest values from [Inidividual's Total] and MATCH their corresponding name at the top of the sheet
For example, my data looks like this-
[Last, First] [Used] [Individual's Total]
Albert 2 7
Betty 3 4
Charlie 3 3
Dorothy 4 4
Albert 2 7
Betty 1 4
Albert 3 7
In my example, Albert would be Rank 1 with a value of 7. Rank 2 would be a tie between Betty and Dorothy with a duplicate value of 4. My intent is to get something that looks like the follwing-
Albert 7
Betty 4
Dorothy 4
I've managed to get Albert and Betty to properly display, but third place is skipped since it's a duplicate value and instead shows Rank 3 as Charlie with a value of 3. My current formula is a bit of a Frankenstein using INDEX/MATCH though, so I'm welcome to ideas starting from scratch.
Thanks for looking!
I'm trying to figure out how to get the names of the Top 3 highest values without duplicating names, but allowing duplicate values.
I have a list of (often repeating) names in table column [Last, First]. I have a single value relating to each name in table column [Used]. I have =SUMIF(Last, First],[@[Last, First]],[Used]) resulting in the sum of each name's used in the table column [Individual's Total].
I would like to pull the highest values from [Inidividual's Total] and MATCH their corresponding name at the top of the sheet
For example, my data looks like this-
[Last, First] [Used] [Individual's Total]
Albert 2 7
Betty 3 4
Charlie 3 3
Dorothy 4 4
Albert 2 7
Betty 1 4
Albert 3 7
In my example, Albert would be Rank 1 with a value of 7. Rank 2 would be a tie between Betty and Dorothy with a duplicate value of 4. My intent is to get something that looks like the follwing-
Albert 7
Betty 4
Dorothy 4
I've managed to get Albert and Betty to properly display, but third place is skipped since it's a duplicate value and instead shows Rank 3 as Charlie with a value of 3. My current formula is a bit of a Frankenstein using INDEX/MATCH though, so I'm welcome to ideas starting from scratch.
Thanks for looking!