I have a large data set and im trying to filter out all the records in a column that contain a string in a list of strings. I tried using a filter; [field1] in ("cat", "hat", "bat", "nap"). This works but doesnt actually capture all the records that contains these strings. What am i doing wrong?
For instance, "dog and the cat", is not coming out in the true portion.
Fyi this data is fictitious for privacy reasons.