Selecting Lowest Value

rthompson55125

New Member
Joined
Jan 7, 2015
Messages
13
Hi, I have thousands of lines and trying to find the lowest value per line, yet I need to identify which supplier is the lowest by (on line 1) . Looking for help in this scenario.

[TABLE="width: 440"]
<colgroup><col><col><col span="3"></colgroup><tbody>[TR]
[TD] [/TD]
[TD] Supplier A[/TD]
[TD] Supplier B[/TD]
[TD] Supplier C[/TD]
[TD]Result[/TD]
[/TR]
[TR]
[TD]Part A[/TD]
[TD] $ 2.00[/TD]
[TD] $ 3.00[/TD]
[TD] $ 1.00[/TD]
[TD]Supplier C[/TD]
[/TR]
[TR]
[TD]Part B[/TD]
[TD] $ 4.00[/TD]
[TD] $ 3.00[/TD]
[TD] $ 1.00[/TD]
[TD]Supplier C[/TD]
[/TR]
[TR]
[TD]Part C[/TD]
[TD] $ 1.00[/TD]
[TD] $ 1.00[/TD]
[TD] $ 3.00[/TD]
[TD]Supplier A[/TD]
[/TR]
</tbody>[/TABLE]

I got the MIN formula, however how do I tye it back to the header row?
Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Enter the following formula in E2 and copy down:

=INDEX($B$1:$D$1,1,MATCH(MIN(B2:D2),B2:D2,0))

f81u1cg.png
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

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