Here is what my formula looks like. I can not get Airtable to accept it. Can you say why?
Current formula
IF(
({Sales Rep}!=""
),
AND(
NOW()>={Followup Date}),
“Delay Notification”)
Proposed formula
IF(
OR(
AND(
{Sales Rep}!=BLANK(),
{Followup Date},
NOW()>={Followup Date}
),
AND(
{Sales Rep}!=BLANK(),
{Followup Date}=BLANK()
)
),
“Delay Notification”,
“Send Notification”
)