Results 1 to 4 of 4

Combo Box (Form Control) not refreshing on "Workbook_Open"

Threaded View

Un-Do Re-Do Combo Box (Form Control) not... 04-20-2019, 05:44 AM
Greg M Re: Combo Box (Form Control)... 04-20-2019, 08:48 AM
Un-Do Re-Do Re: Combo Box (Form Control)... 04-20-2019, 09:38 AM
Greg M Re: Combo Box (Form Control)... 04-20-2019, 11:25 AM
  1. #1
    Forum Contributor
    Join Date
    11-10-2009
    Location
    Perth, Australia
    MS-Off Ver
    Excel 2007
    Posts
    549

    Combo Box (Form Control) not refreshing on "Workbook_Open"

    I have this code which assigns a macro to a drop down on workbook open.
    Drop down is a Combo Box (Form Control) from the Developer tab.
    When I open the workbook, the drop down should say "Select Section".
    If I remove the line "Worksheets(1).Select" it works. But I need this line.
    Is there any way to make it work with this included?

    THIS WORKBOOK
    Option Explicit
    
    Private Sub Workbook_Open()
        Call DropDownAssign 'For assigning macros to Drop Downs
    End Sub
    MODULE
    Option Explicit
    
    Sub DropDownAssign()
        Dim dd As DropDown
        Worksheets(1).Select
        Set dd = ActiveSheet.DropDowns("Drop Down 1")
        dd.Text = "Select Section"
    End Sub
    
    Sub DropDownCalculationSnapLevel1()
        Dim MyDropDown As DropDown
        Set MyDropDown = ActiveSheet.DropDowns("Drop Down 1")
        If MyDropDown.ListIndex > 0 Then
            ActiveSheet.Cells.Find(Trim(MyDropDown.List(MyDropDown.ListIndex)), lookat:=xlPart, SearchOrder:=xlByColumns).Select
            MyDropDown.Text = MyDropDown.List(MyDropDown.ListIndex)
            MyDropDown.ListIndex = 0 'Workaround to allow the same selection
        End If
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Refreshing Combo Boxes on a Form when the Form gets" the focus"
    By Michael D in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-05-2014, 10:05 AM
  2. [SOLVED] Difference between "Form" & "Active X" Combo Box
    By batchy in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-08-2014, 11:18 AM
  3. Replies: 0
    Last Post: 03-21-2014, 09:58 AM
  4. Replies: 4
    Last Post: 09-23-2013, 02:43 PM
  5. [SOLVED] Stock control user form "database" in Excel 2007
    By ghurhu in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-18-2012, 06:07 AM
  6. [SOLVED] Format Form Control Text Box with "Time"
    By Oksana in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 08-14-2012, 04:27 PM
  7. Replies: 0
    Last Post: 02-15-2005, 06:45 PM

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