I need to have a selection from a drop down list of parts in (B2
, B3
, B4
,...) auto populate another cell (D2
, D3
, D4
, ...) with the vendor for that part. I can accomplish most of that with a simple VLOOKUP
for Parts_Data
table:
=VLOOKUP($B2,Parts_Data,2,0)
Unfortunately some of the parts can be purchased from more than one vendor. When one of those multi vendor parts is selected, I would like there to be another drop down in D2
, D3
, D4
, ... that allows the correct vendor out of the two or three to be selected.
I came up with a clunky solution using INDIRECT
and creating dependent drop downs with most of the parts having just one entry for the manufacturer in the second drop down list. I would like to eliminate this extra mouse click for most of the selections if at all possible.