1: 2: 3: 4:
Private Sub cboCounty_AfterUpdate() Me.FilterOn Me.Filter cboCounty.Value End Sub
1: 2: 3: 4: 5: 6: 7: 8:
Private Sub cboCounty_AfterUpdate() If IsNull(cboCountry) Then Me.FilterOn = False Else Me.Filter = "Country = '" & cboCountry & "'" Me.FilterOn = True End If End Sub