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))
 
Top