Reference between rows, not columns

D

Darren

To simplify:
With a list of names in column A and scores in column B, I know using
=INDEX(A:A,MATCH(MAX(B:B),B:B,FALSE,)1) I can see who has the highest score.
My problem is, I want to do the same thing but across rows so that in the
example the names would be in row 1 with the scores in row 2.

Any help would be greatly appreciated.
 
J

Jacob Skaria

With names in Row 1 and marks in row2 try the below

=INDEX(1:1,MATCH(MAX(2:2),2:2,FALSE)*1)

If this post helps click Yes
 
D

Darren

Thankyou so much.

Jacob Skaria said:
With names in Row 1 and marks in row2 try the below

=INDEX(1:1,MATCH(MAX(2:2),2:2,FALSE)*1)

If this post helps click Yes
 

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