look up max

C

CTURNER82

Hi. This seems like it should be simple but I'm not having any luck. If
column A is a list of names and B is a list of corresponding numbers (like
test scores), in C1 I want to find the highest score in B and show the name
of the person to whom it belongs. I can find the MAX in column B, but can't
seem to get beyond that.
Any help would be appreciated.
 
D

Don Guillett

try this where col i has the numbers and col h has the names
=INDEX(H:H,MATCH(MAX(I:I),I:I))
 
N

Niek Otten

=INDEX(A1:A3,MATCH(MAX(B1:B3),B1:B3,0))

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| Hi. This seems like it should be simple but I'm not having any luck. If
| column A is a list of names and B is a list of corresponding numbers (like
| test scores), in C1 I want to find the highest score in B and show the name
| of the person to whom it belongs. I can find the MAX in column B, but can't
| seem to get beyond that.
| Any help would be appreciated.
 

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