Try this, copied down. You haven't identified what to do when ties occur so this is a guess in that regard.Mike / Dave, both formulas work great, one question if I wanted to give these top 5 numbers a different points rating, how could I do that.
Like
Highest = 1
2nd Highest = 0.8
3rd Highest = 0.6
4th Highest = 0.4
5th Highest = 0.2
Book1 | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | John | 12 | |||
2 | Julie | 14 | |||
3 | Jim | 23 | 0.8 | ||
4 | Syeve Ryan | 8 | |||
5 | Helen | 32 | 1 | ||
6 | Tom | 9 | |||
7 | Tomas | 8 | |||
8 | Paul | 12 | |||
9 | Peter | 15 | 0.2 | ||
10 | Julie | 18 | 0.4 | ||
11 | June | 23 | 0.8 | ||
Top 5 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C1 | =LOOKUP(RANK(B1,B$1:B$11),{1,2,3,4,5,6},{1,0.8,0.6,0.4,0.2,""}) |