+ Reply to Thread
Results 1 to 8 of 8

Running a macro on combo box selection

Hybrid View

  1. #1
    Registered User
    Join Date
    11-06-2008
    Location
    Wales
    Posts
    10

    Running a macro on combo box selection

    Hi, I'm looking to change a lot of formulas on the page by just using a combo box selection.

    How can I assign a macro to each selection?

    Idiots guide appreciated.

    Thanks,

  2. #2
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    Depends on the control. If you use the Control Toolbox toolbar's Combobox, doubleclick it and type in the commands or macro to play. Click the design button to enable the combobox.

    If you use the Form toolbar's Combobox, right click it and Assign your macro.

  3. #3
    Registered User
    Join Date
    11-06-2008
    Location
    Wales
    Posts
    10
    I'm on Excel 2007 so I have a choice of tool's or ActiveX combo boxes.

    I want to run a different macro based on the combo selection.

  4. #4
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573
    You can use the value or the selected index. I used A1:A4 for the ListFillRange with values of 1-4. Use one of these 2 methods. Replace 1 or 2 at the end of the sub's Change with nothing to use it as the change event.

    Obviously, you need to replace MsgBox with the name of your sub to run based on the value or index selected.
    Private Sub ComboBox1_Change1()
      Select Case ComboBox1.Value
        Case 0: MsgBox "0"
        Case 1: MsgBox "1"
        Case 2: MsgBox "2"
        Case 3: MsgBox "3"
        Case Else: MsgBox "NA"
      End Select
    End Sub
    
    Private Sub ComboBox2_Change()
      Select Case ComboBox1.ListIndex 'Index 0 based
        Case 0: MsgBox "1"
        Case 1: MsgBox "2"
        Case 2: MsgBox "3"
        Case Else: MsgBox "NA"
      End Select
    End Sub

  5. #5
    Registered User
    Join Date
    11-06-2008
    Location
    Wales
    Posts
    10
    How do I allow a macro to change tabs, at the moment I could record the macro for a certain tab but it will only run on the one I triggered it from.

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    If you post a macro that runs on a given sheet, I or someone else will show you how to change it to operate on a different sheet.
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

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