Results 1 to 4 of 4

Dependent Combobox on Form not updating from dynamic range

Threaded View

  1. #4
    Valued Forum Contributor
    Join Date
    02-12-2011
    Location
    The Netherlands
    MS-Off Ver
    365
    Posts
    868

    Re: Dependent Combobox on Form not updating from dynamic range

    Try this one Ron.

    Private Sub cboMonth_Change()
    Set ws = Worksheets("Generator")
    ws.Range("C1") = cboMonth.Value
    cboDay.Clear
    For Each cDay In ws.Range("DayList")
      With Me.cboDay
      .AddItem cDay.Value
      End With
    Next cDay
    End Sub
    Last edited by HSV; 05-08-2011 at 01:09 PM. Reason: color feature will not work
    Harry.

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