I have two automations set up that send me reminder emails when my records hit a specific date condition. It is a "days remaining" type of condition. I want to wake the base up every morning so that it can update the records and send the appropriate reminder emails. Do I need to have the schedule automation first in the list so that it performs that first or does it not matter?
Schedule Automation to wake up base
Best answer by TheTimeSavingCo
These two automations that I have run off of DateTime_Diff but I only get the email once, at its creation. It doesn't send me one as the days progress to zero. Here is the formula in the field:
Ahh, thanks for the details! I take it that you want one email per day the countdown is <=10? If so, you're going to need to set up your automation differently, and I would try using "When record updated" instead of "When record matches conditions", and make it focus on the "Countdown" field:

And I would update the countdown field formula so that it would only output a number if it was >0 and <= 10 like so:
IF(
AND(
DATETIME_DIFF(
{Deadline to Acknowledge},
TODAY(),
'days'
) > 0,
DATETIME_DIFF(
{Deadline to Acknowledge},
TODAY(),
'days'
) < 11
),
DATETIME_DIFF(
{Deadline to Acknowledge},
TODAY(),
'days'
)
)
(You might want to make a new formula field which has a sole purpose of powering that automation so that you can see the normal countdown)
---
The reason you only got the email once is because "When record matches conditions" only triggers once for every true value it gets. And so the formula field going to 9, 8, 7 etc has no effect since they're all <=10, i.e. true. If you updated the deadline to > 10 days, and then updated it again so that it was <= 10 days, then the automation would trigger again, does that make sense?
And so to get around that we just create a formula field that will only ever update itself if the countdown is >0 and <=10, and trigger the automation whenever that formula field updates
Link to base
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

