Results 1 to 5 of 5

Select Cases and Comboboxes

Threaded View

  1. #1
    Forum Contributor
    Join Date
    03-30-2010
    Location
    Washington DC
    MS-Off Ver
    Excel 2007
    Posts
    458

    Select Cases and Comboboxes

    Hello everyone. I have an outstanding problem that I could use some help on.

    I have a userform that contains two comboxes. If the user selects value "A" in the first combobox, I want a specified range in a spreadsheet to be used as the rowsource for the second combobox.

    If the user selects value "B" in the first combobox, I want a different specified range in a spreadsheet to be used as the rowsource for the second combobox.

    Below is the source code.

    Option Explicit
    
    Private Sub ComboBox1_Change()
    Application.ScreenUpdating = False
    Select Case ComboBox1.Value
        Case Range("A1")
            ComboBox2.RowSource = "TrackerManagement!C2:C10"
        Case Range("A2")
            ComboBox2.RowSource = "TrackerManagement!D1:D10"
    End Select
    
    End Sub
    Now this code is in the actual userform itself. A seperate module "Module 3" shows the form :

    Option Explicit
    Sub CommandButton31_Click()
        Application.ScreenUpdating = False
        TrackerManagement.Show
    End Sub
    it's not working, and I cannot figure it out. Any help is greatly appreciated.
    Last edited by AnthonyWB; 01-12-2011 at 08:28 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 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