Highest Values Comparison

D

Darren

I have a list of 20 names all with 24 separate attributes. Using the max()
function, I can get the highest value for each attribute. With the highest
attributes in a separate table, how do I get the corresponding name to appear
next to each of them?
 
M

Mike H

Hi,

This finds the maximum value in column B and returns the adjacent value
(name) from columnA

=INDEX(A:A,MATCH(MAX(B:B),B:B,FALSE),1)

Mike
 
D

Darren

Thankyou so much Mike.

Mike H said:
Hi,

This finds the maximum value in column B and returns the adjacent value
(name) from columnA

=INDEX(A:A,MATCH(MAX(B:B),B:B,FALSE),1)

Mike
 
J

Jacob Skaria

Use INDEX and MATCH functions to achieve this..Get the row number using the
MATCH function

=INDEX(Array,MATCH(),Colum number)
 

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