I have this two combobox on my form. Each one filters the form independently. but I want to filter the form based on both selections.
I have this code to a check box after update event to filter the form with the two combo box but it doesn't work:
combo19 is the name for the first combo box and combo21 is the name for the second combobox.
Private Sub Check34_AfterUpdate()
Me.Filter = Me.Combo19 & Me.Combo21
Me.FilterOn = True
Me.Refresh
End Sub
Combo19
,Check34
) in code, a kitten dies. :( – Andre