+ Reply to Thread
Results 1 to 14 of 14

Is this considered a dynamic dependent drop-down? AND how can I make this work?

  1. #1
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Question Is this considered a dynamic dependent drop-down? AND how can I make this work?

    I'm not sure if this is considered a "dynamic dependent drop-down list" or conditional or v-lookup - and I cant seem to figure out the correct solution for my needs...:

    1) I have Interview competency categories, each with its OWN SET of questions based on the competencies selected...
    2) on separate worksheet, in cells A4-A10 I want to have a manager select 5-6 competencies which would then give them the option in B4-B10 to choose from a drop-down list questions based on the competency selected.

    Ex: In cell A4, manager selects competency "Building Trust" from drop-down. B4 would then auto-populate a drop-down with only the questions for "Building Trust"
    Please note that some competencies have more questions than others...

    I really want to learn what this is and how to make it work!
    Attached Files Attached Files

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Hi, welcome to the forum

    Your sample doesnt really match your question

    However, attached is a dynamic drop-down. It uses named ranges for each "set" (and sub-set, and sub-sub-set) of data, and then uses INDIRECT() to show the DD list.

    Take a look through it and see if you can adapt it for your use?
    Attached Files Attached Files
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    I prefer to use tables.

    Make a list of things for the first menu, and make a list next to it of table names. We do this because we like pretty outputs but table names need underscores. We use this to convert inbetween.

    Next, each list of other outputs is its own table. Select the range of selectable answers, and define that range as one of the converted Competencies.

    For example, option 1: Aligning Performance for Success, which translates to Aligning_Performance_for_Success.
    If you select E2:E10 in my example you'll see that range is also named "Aligning_Performance_for_Success"

    Dropdown 1 is set to list, C1:C5.

    Dropdown2 is set to list, =INDIRECT(VLOOKUP($A$1,$C$1:$D$5,2,0))

    This will translate the option 1 to a real table name, and pull its list of relevant values.
    Attached Files Attached Files
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

  4. #4
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    See the attached file.

    I made this with a defined name (see red text in the sheet) and datavalidation (see red text in the sheet).
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  5. #5
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    I have updared my file so teh categories/sets are easier to follow
    Attached Files Attached Files

  6. #6
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Thank you! Seeing the different formats you provided is very helpful. I am testing the options now.

  7. #7
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Thanks again for your assistance with this! I was able to replicate everything except for one small thing...
    How did you keep the "Select Competency" and "Select Question" visible?

  8. #8
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    I made them the top choice in each dropdown reference table. Because I'm crafty.

  9. #9
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Yes you are!
    Thank you

  10. #10
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    No problem!

    Come back if it keeps giving you trouble. We'll get through this.

  11. #11
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    I thought I had it...
    What am I missing in the Dropdown 2 formula?
    I created 5 additional rows in columns A & B - each duplicating the formulas you provided.
    Regardless of the competency selected in column A, Column B's dropdown options are for "Aligning Performance for Success"

  12. #12
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Each formula for a given B will have to reference the given A.

    So if you have a cell in A1, and a contingent in B you'll use =INDIRECT(VLOOKUP($A$1,$C$1:$D$5,2,0))


    If you start in A50, your contingent will use =INDIRECT(VLOOKUP($A$50,$C$1:$D$5,2,0))

    Form building tends to have a lot of non-replicateable steps, where you have to specify for each.

  13. #13
    Registered User
    Join Date
    02-09-2015
    Location
    California
    MS-Off Ver
    2010
    Posts
    8

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    You are the man!! It makes perfect sense and worked great!
    Thanks again!

  14. #14
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,929

    Re: Is this considered a dynamic dependent drop-down? AND how can I make this work?

    Thanks for the feedback

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Make 2 dependent drop down lists dynamic
    By arsene2conde in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-28-2013, 02:57 PM
  2. [SOLVED] Trying to make multiple dependent drop down list with dynamic ranges
    By Gwen@YouWantWhat? in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-01-2012, 12:55 AM
  3. Dependent and dynamic drop-down lists
    By csunseri in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-24-2011, 04:32 AM
  4. Help for dynamic dependent drop down box
    By drill bit in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 03-14-2011, 04:53 AM
  5. [SOLVED] dependent drop down boxes and dynamic ranges
    By philcud in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM

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