Private Sub ComboBox1_Change()
With Range("A2:F" & Application.Match([9^9], [A:A]))
.AutoFilter Field:=3, Criteria1:=IIf(ComboBox1 = "All", "*", ComboBox1)
.AutoFilter Field:=5, Criteria1:=IIf([E1] = "All", "*", [E1])
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [E1]) Is Nothing Then ComboBox1_Change
End Sub