max in on column, description in another

S

sylv1501

I want to find the highest number in column B and show the name
associated with that number.

A B

John 123
frank 224
joe 110


frank 224 This would show the name and the associated
number.

Is there a function that will do this?
 
R

Ragdyer

How about combining into a single formula:

=INDEX(A1:A10,MATCH(MAX(B1:B10),B1:B10,0))
 

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