How to use the "Formula" box to filter Airtable modules in make.com?

How to use the “Formula” box to filter Airtable modules in make.com?

I want the Airtable Search module to only react to new Airtable entries whose Name field contains a certian word (e.g. XXX Progect)

I don’t know how to write that formula. Thanks! Or point me to the right place please. Thanks!!

Try this: To filter Airtable records in Make.com using the “Formula” box in the Airtable Search module, you can use the following formula:
FIND(“XXX Project”, {Name}) > 0

3 Likes

Thanks a lot Jennfier! Thanks for pointing me to the right direction.
I came across some error but then I asked Poe and now I’m successful with below:
IF(SEARCH(“School_Contact”, {School Contact}), “Found”, “Not Found”)
Thanks a lot for your help when I was stuck! ;-))