Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
Jun 11, 2021 10:58 AM
Hi there,
I currently use Airtable to automatically notify me at various dates along a user’s timeline:
IF(DATETIME_DIFF(TODAY(),{4w}, "days")>-1, IF({4w Email?},"✅", "❗"))
The Slack notifications always seem to generate at ~5pm PST – the end of my work day. I’d much rather have them generate in the morning.
Jun 11, 2021 11:26 AM
Yes, I’m guessing Airtable is updating your 4w has passed? field at its midnight (7 hrs ahead of you).
Some better Airtable’r will probably have an idea how to work around it. Possibly a formula field that says
VALUE(DATETIME_FORMAT(SET_TIMEZONE(NOW(), ‘America/Los_Angeles’),‘H’))
that will return an integer between 0-23 (I think). Then you can have your automation condition on that number being between 6-9 or something to get it to fire in the morning PST.
Just my quick thoughts. Good luck.