+ Reply to Thread
Results 1 to 6 of 6

List for for same dropdown

Hybrid View

  1. #1
    Forum Expert
    Join Date
    11-22-2016
    Location
    Cornwall,UK
    MS-Off Ver
    office 365
    Posts
    4,240

    Re: List for for same dropdown

    Try this by clicking on show Form3 in attached workbook
    This works because Named Ranges have been set up to match the dropdown values in the previous box
    Works like =INDIRECT formula with cell dependant dropdowns

    Private Sub UserForm_Initialize()
    Me.ListBox1.RowSource = "Division"
    End Sub
    
    Private Sub listBox1_Change()
        Me.ListBox2.RowSource = Me.ListBox1.Value
    End Sub
    
    Private Sub listBox2_Change()
        Me.ListBox3.RowSource = Me.ListBox2.Value
    End Sub
    Late EDIT
    you could use comboboxes instead of listboxes - just amend the code to match their names
    Attached Files Attached Files
    Last edited by kev_; 02-21-2017 at 08:37 AM.
    Click *Add Reputation to thank those who helped you. Ask if anything is not clear

+ 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. Replies: 6
    Last Post: 02-02-2016, 04:26 PM
  2. Replies: 0
    Last Post: 08-22-2012, 03:52 PM
  3. Dropdown list effects multiple dropdown list
    By pvaldez in forum Excel General
    Replies: 1
    Last Post: 05-07-2010, 02:12 PM
  4. Replies: 21
    Last Post: 12-02-2009, 03:27 PM
  5. Date dropdown list and a Time dropdown list in outlook
    By L_ter in forum Outlook Programming / VBA / Macros
    Replies: 3
    Last Post: 03-30-2009, 02:33 AM
  6. result of selecting from the dropdown list should be a dropdown list
    By No News in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 07-05-2006, 11:15 AM
  7. result of selecting from the dropdown list should be a dropdown list
    By No News in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 07-01-2006, 05:55 AM

Tags for this Thread

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