Hi
I am trying to figure out how to filter a workflow to remove rows which contain specific values (held in an exception list) in one of the columns.
My idea is to hold the exception list in a Text Input tool and somehow connect this to the Filter tool to remove relevant rows.
Thanks in advance for any help or advice.
Jon
Solved! Go to Solution.
@jpg34 will you always be looking up exact matches, or is it a case of excluding rows that contain key words? If it's the former then you can just conduct a join on the field of interest = your lookup field and then look at the Left output anchor to see those that didn't match like so:
Sounds like you are looking to use Left/Right Join
@TimN's solution is great if the data is buried in the column (with spaces as the separator), but a simple join will allow you to filter off the values as you were mentioning. I modified the previous solution to include that filtering (with Join tool)
Thanks @TimN . My specific use case is removing rows with exact matches rather than sub-strings but I will no doubt use your logic in the future.
Hi Castor
Simple when you know how. Yes this is exactly what I need. Thanks for your time.