I've used the following formula for my ranks:
=RANK(AC12,$AC$12:$AC$55,0)
where AC12:AC55 are the indivdual "scores." I then used the following to list my top 5:
=IF(ROW()-ROW($L$2)<=$L$1,INDEX($AB$12:$AB$55,MATCH(ROW()-ROW($L$2),$AD$12:$AD$55,0)),"")
where L1="5" and the top 5 are listed in L3:L7 and AB12:AB55 are the individual's names.
This works well except it does not account for ties at any position. I'd like the top 5 to list as follows:
1. Joe (ranked 1, score 5)
2. Tim (ranked 2, score 3)
2. Sue (ranked 2, score 3)
4. Jim (ranked 4, score 2)
4. Jon (ranked 4, score 2)
Is there an easy method of accomplishing this? Items in parentheses are not required. Thanks for all the help!