Ranking in order

G

Guest

Good afternoon,

I am trying to rank and place in order my findings. Example:

A B
1 2 Y
2 1 N
3 0 N/A

I have been able to get column C to display the highest number, but my
problem now is how do I get the name that ranks highest to be displayed.

in the above example it would be "Y" because it ranks highest.

thank you for your help
 
G

Guest

You can use VLOOKUP to retrieve the name. In this case, if the highest
number is in C1, you can use:
=VLOOKUP(C1,A1:B3,2,FALSE)
The drawback of this function is that if you have more than one row with the
same value in the column A, it will only return the first appearance.

Hope this helps,
Miguel.
 

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

Top