+ Reply to Thread
Results 1 to 23 of 23

2 specific secondary drop down lists can be chosen after chosen specific option in primary

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    03-25-2004
    Location
    Boston, MA US
    Posts
    1,094

    Re: 2 specific secondary drop down lists can be chosen after chosen specific option in pri

    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

  2. #2
    Registered User
    Join Date
    05-30-2012
    Location
    Hong Kong
    MS-Off Ver
    Excel 2003
    Posts
    95

    Re: 2 specific secondary drop down lists can be chosen after chosen specific option in pri

    Quote Originally Posted by SteveG View Post
    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.

  3. #3
    Registered User
    Join Date
    05-31-2012
    Location
    Scranton, PA
    MS-Off Ver
    Excel 2010 (Mac)
    Posts
    11

    Re: 2 specific secondary drop down lists can be chosen after chosen specific option in pri

    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

  4. #4
    Registered User
    Join Date
    05-30-2012
    Location
    Hong Kong
    MS-Off Ver
    Excel 2003
    Posts
    95

    Re: 2 specific secondary drop down lists can be chosen after chosen specific option in pri

    Thanks tonalqualityx!
    Last edited by ohlalayeah; 06-01-2012 at 03:06 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1