I have this code that is used to select queries using a combo box(Timecombo), and in turn select data from the queries using another combo box(Itemcombo). This data is used to find a value of a form. Until now there is only one case statement. This all works except that the value is not found in the form.
Code:
Private Sub Timecombo_Change()
Select Case Timecombo.Value
Case "Months"
Me.Itemcombo.RowSource = "SELECT itemname FROM day ORDER BY itemname;"
End Select
End Sub