Lookup low value and return name in row above

Milo_D

New Member
Joined
Apr 25, 2017
Messages
3
I am looking for a formula that would compare values in three non-contiguous cells (all in same row), and return the value (or values) in the Row 1 cell that corresponds with the minimum value(s) of those cells. In sample table below, looking for formula for cells G2 through G5.

In sample below, the formula for cell G2, finding the minimum of A2, C2 and E2, and returning the text in Row 1 above..
And for cell G3, returning the values for the two (tied) minimum cells of A3, C3 and E3?

ABCDEFG
1Bidder SmithBidder JonesBidder RobertsLow Bidder
220Other data30Other data40Other dataBidder Smith
320Other data20Other data30Other dataBidder Smith, Bidder Jones
430Other data15Other data30Other dataBidder Jones
550Other data50Other data45Other dataBidder Roberts

<tbody>
</tbody>

Any expertise much appreciated.....
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
In G2 control+shift+enter, not just enter, and copy down:

=TEXTJOIN(",",TRUE,IF(A2:F2=MIN(IF(MOD(COLUMN(A2:F2)-COLUMN(A2),2)=0,A2:F2)),$A$1:$F$1,""))

Hope your system has the TEXTJOIN function.
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,996
Members
452,373
Latest member
TimReeks

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