Get top 3 values from a list

  • Thread starter Thread starter Dave H
  • Start date Start date
D

Dave H

I am running a competition that will be using Excel to calculate scores. I
am looking for a way to search the total score column, pull out the highest
3 scores and place them in a Results table. I then need to pull out the
contestant's name and place it next to their pulled score.

I want the table to look like this:

Place: Contestant: Total Score:
1st Pulled from table Max score from col
2nd Pulled from table 2nd highest score
3rd Pulled from table 3rd highest score

Any help would be greatly appreciated

Thanks
Dave
 
Dave

Assuming Column A has scores in A1:A10 and corresponding contestants in B1:B10

In total score column D enter these formulas

=LARGE($A$1:$A$10,1) returns first
=LARGE($A$1:$A$10,2) " second
=LARGE($A$1:$A$10,3) " third

In Contestants column C enter this formula

=VLOOKUP(C1,$A$1:$B$10,2,0) and drag/copy down 3 cells.

All of the above assumes "no ties".


Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top