Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Mar 24, 2017 09:35 AM
How could I filter via JavaScript API depending on linked table? What is the criteria if there are more than one table linked?
I tried "{Column} = '" + record.get('Col') + "' but then I get only the results with just this reference, not the records having addition refs.
"{Column} = '" + record.get('Col') + "'
Mar 26, 2017 11:40 PM
I got it now. This works for me: "FIND( '" + record.get('Col') + "', ARRAYJOIN({Column}, ';'))"
"FIND( '" + record.get('Col') + "', ARRAYJOIN({Column}, ';'))"
Apr 29, 2019 07:00 AM
Can you make it work using the REST API ? I tried to do the same, but I never get any result…