Autofilter on a combo box

P

Patrick Molloy

have the combobox call the following when it changes value

Sub SetFilter()
With Range("A1:D1")
.AutoFilter Field:=1 , Criteria1:=Range("combox linked cell").Value
End With
End Sub

change the ranges and field appropriately
 
S

Scott

Thanks! I set my combobox change command to call this function and it
works out well.
 
Top