Hi,
The site I sent you has all the information needed to do what you want. You need 2 dependent drop downs. When I have a few minutes I'll send a sample workbook. The site, however, has a video turorial which is good if you can't wait.
Steve
Hi,
The site I sent you has all the information needed to do what you want. You need 2 dependent drop downs. When I have a few minutes I'll send a sample workbook. The site, however, has a video turorial which is good if you can't wait.
Steve
Thanks Steve,
But your link isn't fully resolve my problem. I know how to create data validation dependent lists that is only one to one relationship, or cascaded one-to-one-to-one relationship, however mine is a one to two relationship.
That means I have to choose one specific option in the primary drop down list, then the two secondary drop down lists will show the sub-information of that specific result in the primary drop down.
If you create named lists you can reference them using the INDIRECT function, which it seems like you already know.
What I would recommend for sub list 2 is to include an IF statement or VLOOKUP, depending on how many options you need to choose.
Example:
Create two lists, one called BOX2A, which includes LOWER PART I and LOWER PART 2 and one called BOX2B, which includes LOWER PART P and LOWER PART Q.
In the data validation for your second drop-down use formula that references those list names based on what is in the main menu.
=INDIRECT(IF(A1="Item A","BOX2A",IF(A1="Item B","BOX2B","")))
Or you can create a table of list names that should be associated with each specific Item in the main menu, which would be more efficient if you have several items in the main menu.
=INDIRECT(VLOOKUP(A1,G1:H5,2,FALSE))
G1:H5 being where your table is located, 2 being the column within the table where the names for the appropriate lists for the 2nd dependent box are found.
Here's a video that covers using the INDIRECT function for the first part of what you'll need to do http://www.youtube.com/watch?v=0Ey8-ILjjYs
Thanks tonalqualityx!
Last edited by ohlalayeah; 06-01-2012 at 03:06 AM.
There are currently 2 users browsing this thread. (0 members and 2 guests)
Bookmarks