Highest Values Comparison

  • Thread starter Thread starter Darren
  • Start date Start date
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?
 
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
 
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
 
Use INDEX and MATCH functions to achieve this..Get the row number using the
MATCH function

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