Reputation: 31
I have a 2 row table with 6 column. The first column have titles and the second row in each column the result of a sum.
When I use the =MAX(A2:F2)
it returns the biggest value, But when using =MATCH(MAX(A2:F2),A1:F1,0)
doesn't return the text.
What is the correct way to do this in Excel?
Upvotes: 0
Views: 2883
Reputation: 23081
I think you need this, which uses INDEX to find the corresponding entry in A1:F1 to the max in A2:F2
=INDEX(A1:F1,MATCH(MAX(A2:F2),A2:F2,0))
Upvotes: 1