I use this macro to reapply a filter every time a change is made to the data of a sheet:
Private Sub Worksheet_Change(ByVal Target As Range)
Sheets("SHIFTS").AutoFilter.ApplyFilter
End Sub
I need the filter to be reapplied only when the data entry contains a specific character.
e.g. User can input values 1,2,3,1S,2S,3S
I need the filter to be reapplied only when the character "S" is in the entered value.