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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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,216,077
Messages
6,128,673
Members
449,463
Latest member
Jojomen56

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