hooper12345

New Member
Joined
May 12, 2015
Messages
36
Could someone point me to a post that previously address this (can't locate) or assist me with the following:

I'm trying to return the row header for the lowest value in the set. Using the table below what i'd like to display where the XX is would be "Changed" and "Dated". I'm struggling with the right order of INDEX and MATCH to get this to work.


thank you for the help in advance,

A1BCD
2lowest60%40%
XXXX
3bundle4N5N
4Changed?60%100%
5Dated?100%40%
6Visual Check?100%100%

<tbody>
</tbody>
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
hooper12345, Good evening.

A
B
C
1
lowest60%40%
2
=formula=formula
3
bundle4N5N
4
Changed?
60%100%
5
Dated?100%40%
6
Visual Check?100%100%

<tbody>
</tbody>

Try to use:

B2 --> =INDEX(A4:A6, MATCH(MIN(B4:B6), B4:B6, 0))

C2 --> =INDEX(A4:A6, MATCH(MIN(C4:C6), C4:C6, 0))

OR

B2 --> =LOOKUP(MIN(B4:B6), B4:B6, A4:A6)

C2 --> =LOOKUP(MIN(C4:C6), C4:C6, A4:A6)

Is that what you want?
I hope it helps.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,842
Members
449,193
Latest member
MikeVol

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top