Search code examples
regexgoogle-sheetsfiltergoogle-sheets-formulatextjoin

Google Sheets' filter column with data from another column using custom formula


I am stuck on this for hours, I am trying to filter with custom formula

This is what I tried, why is it not working ?

=IFERROR(match( E1:E2, A:A , 0), 0) > 0

enter image description here

What I want to see ng

What it shows

enter image description here


Solution

  • you can use this custom formula:

    =REGEXMATCH(A2&"", TEXTJOIN("|", 1, E$1:E)&"")
    

    0

    0

    0