Forum Discussion
darshthakkar - My solution is pretty similar to what Abhishek_Soni37 provided.
I would recommend that you not use JSON.parse() for every record. It can be fairly taxing on your CPU depending on data volume. If you want to remove the hardcoded reference to the array of values to search for, I recommend you look at Expression Libraries.
Hope this helps!
darshthakkar
2 years agoValued Contributor
koryknick - If I use 2 filter snaps would that be more effective than using ["abc", "xyz"].filter(x=> $txt.contains(x)).length >=1?