Skip to main content

I have a table with a column which can 0 or more string values. I’m trying to search for all records that contain a certain string value in its that column



I’m using the following in my request URL but never getting any records (this value does exist within the array of values in some of the rows)



filterByFormula=SEARCH("rec6CS1RqOjcYLwXf", ARRAYJOIN(Industries))



Am I doing something wrong?

Hi @Jason_Burke - I think the problem here is that you are literally searching for the string “rec6CS1RqOjcYLwXf” in the ARRAYJOIN value, but, I assume, you want to search for a field value associated with record “rec6CS1RqOjcYLwXf”.



(I’m also assuming that your ARRAYJOIN is something like this:






)



To make it work your formula should read something like:



filterByFormula=SEARCH("Retail", ARRAYJOIN(Industries))



or if the search term is dynamic, then do something like:



let searchTerm = rGet the dynamic value here from a record, table, etc]

filterByFormula=SEARCH(searchTerm, ARRAYJOIN(Industries))



JB


Reply