I’ve recorded the following macro below (short version)
Selection.AutoFilter
ActiveSheet.Range("$A$4:$FD$373").AutoFilter Field:=3, Criteria1:=Array( _
"house", "flat", _
"hotel"), Operator:=xlFilterValues
I want to add more string's (130 in total) but I keep getting the following message
''Too Many Line continuations''
The column has about 4-6 thousand rows with data, initially I wanted to delete rows with certain string values but that approach takes quite a long time to process.
I've looked everywhere and cant seem to get my head around it :(
Any ideas? Much appreciated