Conditional Drop Down Lists Based on Lookup

tarc53

New Member
Joined
Feb 21, 2014
Messages
2
Hi All,

I currently have a list of companies and their corresponding company ticker symbol. I want to be able to choose either the ticker symbol or the company name from a drop down and have a corresponding cell populate information. For example if I select "GE" from a drop down list I want the column titled "Company Name" to populate with "General Electric," but I also want the ability to select "General Electric" from a separate drop down and the Ticker column to be populated.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
you could do that using a lookup

index match may be better to use

so setup your drop down list from data validation

then assumig
drop down for Ticker in A1 and you want name in B1
drop down for Name in C1 and ticker in D1

and the table say in sheet2 A1 to B1000 - for the A1 = company and B1 = ticker

in B1 sheet1 put
index(Sheet2!A1:A1000, match(A1,B1:B1000,0))

in D1 sheet1 put
index(Sheet2!B1:B1000, match(C1,A1:A1000,0))
 
Upvote 0
Wayne,

Thanks for the response. I was hoping to keep the drop down lists contained to two columns. I think this is going to require some VBA.
 
Upvote 0
i have only suggested two columns
but yes, VBA may give further flexibility,

also there are a vast number of companies - so the dropdown will be very big
 
Upvote 0

Forum statistics

Threads
1,216,360
Messages
6,130,176
Members
449,562
Latest member
mthrasher16

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