Private Sub ComboBox1_Change()
ActiveSheet.AutoFilterMode = False
ActiveSheet.Range("c3:aa3").Select
Selection.AutoFilter
Range("C3").AutoFilter Field:=1, Criteria1:=Sheets("sheet3").Range("d3").Value
ActiveSheet.Range.Offset(0, 24).Select
End Sub
above code don't work as I am trying to apply a autofilter and select the row with respect to the selection in combobox.
but no help.
ActiveSheet.AutoFilterMode = False
ActiveSheet.Range("c3:aa3").Select
Selection.AutoFilter
Range("C3").AutoFilter Field:=1, Criteria1:=Sheets("sheet3").Range("d3").Value
ActiveSheet.Range.Offset(0, 24).Select
End Sub
above code don't work as I am trying to apply a autofilter and select the row with respect to the selection in combobox.
but no help.