Column Search using list of Partial String
I'm trying to get rows where the value has a match from a defined list of partial strings. Example below. The partial string which I'm interested is either "aaa" or "aa bb". I've started with the JSL below. Ideally, the result is [1,2,4,5,7,8,11]. The script below was able to get everything except for the last one (11). Nevertheless, perhaps there are more elegant solutions than what I have as wel...