Hi all!

I found these formulas on an old thread and am using them to pull the names and scores of the 2 highest scoring people from the list of names and scores and putting them in another area of the sheet:

For the score
=LARGE($B$1:$B$100,ROWS(D$2:D2))
copied down

For the name
=INDEX($A$1:$A$100,MATCH(1,INDEX(($B$1:$B$100=$D2)*ISNA(MATCH($A$1:$A$100,$C$1:$C1,0)),0),0))
copied down
I have names is A and scores in B. The results of who scored highest will have names in C2:C3 and their scores in D2:D3.

The problem I run into is if two people have the same score, the first name populates twice.

Any suggestions?