• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Trouble with MIN and display column heading

myka

New Member
Complete newbie here.

I have data like this

Row 1 Header 1 Header 2 Header 3
Row 2 2 3 4

I want to search all numbers in Row 2, find the minimum number and display the Header Text as listed in Row 1 for the returned minimum value in Row 2.

Please help.
 
Complete newbie here.

I have data like this

Row 1 Header 1 Header 2 Header 3
Row 2 2 3 4

I want to search all numbers in Row 2, find the minimum number and display the Header Text as listed in Row 1 for the returned minimum value in Row 2.

Please help.

Hi,

Try this. Drag down as required.

=INDEX($A$1:$C$1,MATCH(MIN(A2:C2),A2:C2,0))
 
Back
Top