I am having an excel with below table
A B
Name Score
A 80
B 45
C 34
D 45
E 99
F 99
G 99
In the above table E, F and G's scores are same (sharing the maximum value).
I am trying to achieve the Top 3 'Names' and hence trying the formula -
Max 2nd =INDEX(A1:A8,MATCH(LARGE(B1:B8,2),B1:B8,1))
Max 3rd =INDEX(A1:A8,MATCH(LARGE(B1:B8,3),B1:B8,1))
However, I am getting the FIRST name's 'E' only for the rest of the maximum. values. I am expecting F and G to be displayed the next.
Can anyone please help.
Thanks in advance