How to find Minimum Value between Several Columns and return Corresponding Company Name??

kymikee

New Member
Joined
Aug 2, 2013
Messages
4
I have a spreadsheet that contains the following:
I am checking prices between 5 different vendors:
Columns D, G, J, M and P contains the Vendors Part Numbers
Columns E, H, K, N and Q contains the Vendors Prices
Columns F, I, L O and R contain the Vendors initials

I am trying to set up a formula to find the Minimum Price on each Row (I have 31 Rows) and the return the Vendors Initials so I can know which Vendor has the lowest price on each item. Can someone help me to come up with a formula that can do this??
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hey kymikee,

Assuming your data starts at row 2, you can place the below formula in column S

Code:
=INDEX(E2:R2,1,MATCH(MIN(Q2,N2,K2,H2,E2),E2:R2,0)+1)
 
Upvote 0

Forum statistics

Threads
1,214,905
Messages
6,122,174
Members
449,071
Latest member
cdnMech

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