Skip to main content
Question

Using a formula to trigger an automation

  • October 8, 2025
  • 8 replies
  • 93 views

Forum|alt.badge.img+4

I am trying to set up an email automation that sends an email the next day at 9am after a status change. I have created a formula field: IF(
  {Status Changed},
  SET_TIMEZONE(
    DATEADD(
      DATETIME_PARSE(DATETIME_FORMAT({Status Changed}, 'YYYY-MM-DD') & "T09:00:00"),
      1,
      'days'
    ),
    'Europe/London'
  )
)

The automation is triggered using a status condition and when the formula field is ‘today’. and This creates the correct time and date in the formula field, but it is not triggering the automation. 

 

8 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Hmm, what if you used an ‘At scheduled time’ trigger instead? I’ve set it up here for you to check out

The idea would be to create a ‘Last modified time’ field that looked at the ‘Status’ field:

And then we’d have an automation that would trigger at 9am on every weekday, and it would look for all the records where the Status was modified yesterday and carry out the action you wanted:


Forum|alt.badge.img+4
  • Author
  • New Participant
  • October 8, 2025

Thanks. When configuring the email automation how can I ensure it sends to the correct email addresses?


Mike_AutomaticN
Forum|alt.badge.img+28

Hey ​@Jwatson1,

I believe  this is what you are looking for:
 



Completely different matter, but would love to have you join our Airtable Hackathon! Make sure to sign up!!

Mike, Consultant @ Automatic Nation 
YouTube Channel


Mike_AutomaticN
Forum|alt.badge.img+28

Specifically min 2:00 from the video above probably!


TheTimeSavingCo
Forum|alt.badge.img+31

I’m assuming the records have the email addresses needed?  If so, you would use the ‘Email’ field value from ‘Current item’ like so:

 


Forum|alt.badge.img+4
  • Author
  • New Participant
  • October 9, 2025

Thanks. I only want the email to send once, but surely using this method each record will receive the email everyday if there status is still the same. Is there a way I can only send the email once?

 


TheTimeSavingCo
Forum|alt.badge.img+31

Hmm, I’m not following.  It looks for records where the Status was updated yesterday, so tomorrow that record won’t come up since its Status wasn’t updated?


Forum|alt.badge.img+4
  • Author
  • New Participant
  • October 10, 2025

Of course, sorry my mistake. Thanks