I have Column A and Column B. What I want to do is copy Column C and remove rows which match/contain rows in Column B.
I have this formula but it doesn't remove containing rows, only matching:
=ARRAYFORMULA(IF(ISNA(MATCH(A:A,B:B,0)),A:A,""))
Any formula/query for this?
You can see it live here (please comment suggestion there): https://docs.google.com/spreadsheets/d/1EBJgRAt0UfyfP_zgv3RITNnN3VW3KXoeiIC9mDTjJL4/edit?usp=sharing
FIND()
instead ofMATCH()
? – imtheman