I have a table with similar data to this...
50 Joe
50 Cindy
50 Janet
30 Jamaal
36 Anthony
24 Stephen
I want to return the 5 highest numbers in column A of the source table into column B of the results table. Then, return the corresponding name from column B of the source table into column A of the results table.
I'm using this formula for Column A of my Results Table:
=VLOOKUP(LARGE($A$3:$A$8,1),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,2),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,3),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,4),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,5),$A$3:$B$8,2,FALSE)
And this formula for Column B of my Results Table:
=LARGE($A$3:$A$8,1)
=LARGE($A$3:$A$8,2)
=LARGE($A$3:$A$8,3)
=LARGE($A$3:$A$8,4)
=LARGE($A$3:$A$8,5)
Using the formulas above, my Results Table looks like this:
Joe 50
Joe 50
Joe 50
Anthony 36
Jamaal 30
But I wish it looked like this:
Joe 50
Cindy 50
Janet 50
Anthony 36
Jamaal 30
I've researched this like crazy and I find a lot of INDEX and MATCH formulas but none that seems to do what I want. I want the formula to work dynamically as the data changes, so sometimes there will be no duplicates and other times 2 or more (in this case 3).
Did I present that clearly enough? Thanks in advance for any help you can provide!
50 Joe
50 Cindy
50 Janet
30 Jamaal
36 Anthony
24 Stephen
I want to return the 5 highest numbers in column A of the source table into column B of the results table. Then, return the corresponding name from column B of the source table into column A of the results table.
I'm using this formula for Column A of my Results Table:
=VLOOKUP(LARGE($A$3:$A$8,1),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,2),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,3),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,4),$A$3:$B$8,2,FALSE)
=VLOOKUP(LARGE($A$3:$A$8,5),$A$3:$B$8,2,FALSE)
And this formula for Column B of my Results Table:
=LARGE($A$3:$A$8,1)
=LARGE($A$3:$A$8,2)
=LARGE($A$3:$A$8,3)
=LARGE($A$3:$A$8,4)
=LARGE($A$3:$A$8,5)
Using the formulas above, my Results Table looks like this:
Joe 50
Joe 50
Joe 50
Anthony 36
Jamaal 30
But I wish it looked like this:
Joe 50
Cindy 50
Janet 50
Anthony 36
Jamaal 30
I've researched this like crazy and I find a lot of INDEX and MATCH formulas but none that seems to do what I want. I want the formula to work dynamically as the data changes, so sometimes there will be no duplicates and other times 2 or more (in this case 3).
Did I present that clearly enough? Thanks in advance for any help you can provide!