Autofilter on a combo box

  • Thread starter Thread starter Scott
  • Start date Start date
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
 
Back
Top