I’m trying to set up an automation that will send an email reminder at a later date to complete a task.
I have set up one column with “Due Date” another as “Today” and a third as “Send”.
I have set up the following formula that when “Due Date” = “Today” it should put an “X” in the “Send” column. My automation is set to send the email when the “Send” field is updated with an X in it. Here is the formula:
IF({Due Date} = {Today},“X”)
It did not work. I also tried:
IF(IS_SAME({Due Date},TODAY()),“X”)
That didn’t work either. Just to test it, I tried:
IF(IS_SAME({Due Date},TODAY()),“X”,“Y”)
and then all the columns filled with Y, even the one where the Due Date matched Today.
???