HI
I have done quite a bit of searching and cant quite find the answer.
I wish to perform a "contains" filter on a column which contains a string of text.
This will be looped using a list of words as the "contains" reference.
The advanced filter doesnt do what i am after.
I realise i can do this in a crude version using mulitples of the below,
ActiveSheet.Range("$A$1:$AA$200").AutoFilter Field:=6, Criteria1:= _
"=word", Operator:=xlAnd
But my list is huge, and surely there is a way to get it to read from a list and fitler accordingly?
Also to paste the corresponding row where the word is found into a new sheet would top it off!
Thanks again
I have done quite a bit of searching and cant quite find the answer.
I wish to perform a "contains" filter on a column which contains a string of text.
This will be looped using a list of words as the "contains" reference.
The advanced filter doesnt do what i am after.
I realise i can do this in a crude version using mulitples of the below,
ActiveSheet.Range("$A$1:$AA$200").AutoFilter Field:=6, Criteria1:= _
"=word", Operator:=xlAnd
But my list is huge, and surely there is a way to get it to read from a list and fitler accordingly?
Also to paste the corresponding row where the word is found into a new sheet would top it off!
Thanks again