i have a zap that updates someone’s registration for an event when they pay.
the table in Airtable with event registrations has all the registrations for all events, so i need the zap to find the right person and the right event. it finds the person by email address, and it can find the correct event by either the name of the event (which is a lookup field) or the created date, assuming they registered in the past month.
i am trying to use an AND function for my search formula, and i am getting an invalid formula error in both cases. here’s what i’ve tried:
AND(Demail changed by formatter to lowercase]={Lowercase email}, SEARCH(“(Ticket name]”, “{Event title lookup})>0)
AND(>email changed by formatter to lowercase]={Lowercase email}, TONOW({Created date})<31)
(stuff in italics comes from earlier steps in the zap or my payment platform)
i prefer the ticket name if i can get it to work, but the ticket name will not always exactly match the info in Airtable, it will always contain.
what am i missing? does AND not allow nesting? something else? thank you!!