S Scott Jul 22, 2009 #1 Does anyone know how to get an auto filter to be based on a choice in a combo box?
P Patrick Molloy Jul 22, 2009 #2 have the combobox call the following when it changes value Sub SetFilter() With Range("A11") .AutoFilter Field:=1 , Criteria1:=Range("combox linked cell").Value End With End Sub change the ranges and field appropriately
have the combobox call the following when it changes value Sub SetFilter() With Range("A11") .AutoFilter Field:=1 , Criteria1:=Range("combox linked cell").Value End With End Sub change the ranges and field appropriately
S Scott Jul 22, 2009 #3 Thanks! I set my combobox change command to call this function and it works out well.