I am trying to filter data based on a list of zip codes. My data contains a field called locations. Those cells contain a list of zip codes in which that product is carried (some cells are hundreds of zip codes long separated by " "+"|"+" "). If I want to filter out all the products that are in a certain county by filtering against another list of zip codes, how would I go about doing that?
In Excel we use this formula, =SUMPRODUCT(--ISNUMBER(SEARCH([named range of zips we want to filter], H2)))>0
H2 is the cell in the location field that contains the list of zips. The formula above returns a TRUE or FALSE value. Then we filter down to all the true values and copy and paste them out. Any help on how to do this using the filter tool in Alteryx would be a huge help!