Hey @Sharon_Visser!
For this, I recommend leveraging the SET_LOCALE function.
This will allow you to disregard the GMT settings/formatting and hard-code the timezone to fit your needs.
Here’s how I did it:
IF(
{Category} = "Observed Holiday",
IF(
{Reminder Date} = TODAY(),
DATETIME_FORMAT(
SET_LOCALE(
{Reminder Date},
'America/New_York'
),
'LLL'
)
)
)
Here’s what that formula outputs.
I formatted it with the LLL
parameter for the sake of showing that the time value is 12:00 AM EST.

As a side note, not sure if it’s a hard requirement, but I think you can consolidate your two formula fields into one by nesting them.
It’s actually how I did the formula above.
You can then set up your automation to fire whenever the formula field is not empty.
It’ll save you a field and keep things tidy, but it’s a stylistic thing.
Hey @Sharon_Visser!
For this, I recommend leveraging the SET_LOCALE function.
This will allow you to disregard the GMT settings/formatting and hard-code the timezone to fit your needs.
Here’s how I did it:
IF(
{Category} = "Observed Holiday",
IF(
{Reminder Date} = TODAY(),
DATETIME_FORMAT(
SET_LOCALE(
{Reminder Date},
'America/New_York'
),
'LLL'
)
)
)
Here’s what that formula outputs.
I formatted it with the LLL
parameter for the sake of showing that the time value is 12:00 AM EST.

As a side note, not sure if it’s a hard requirement, but I think you can consolidate your two formula fields into one by nesting them.
It’s actually how I did the formula above.
You can then set up your automation to fire whenever the formula field is not empty.
It’ll save you a field and keep things tidy, but it’s a stylistic thing.
Thanks for responding so quickly! If I understand what you are saying, using SET_LOCALE with ‘America/New_York’ will set it to EST at midnight. But, let’s say I wanted the automation to go at a specific time in EST, not midnight but 9:00 AM. Would the ‘LLL’ format help me do that? If I can’t get the specific time I want, then midnight will definitely work.
Thanks for responding so quickly! If I understand what you are saying, using SET_LOCALE with ‘America/New_York’ will set it to EST at midnight. But, let’s say I wanted the automation to go at a specific time in EST, not midnight but 9:00 AM. Would the ‘LLL’ format help me do that? If I can’t get the specific time I want, then midnight will definitely work.
Ooooo!
So, if you want to have it go for 9:00 AM EST, then you’ll want to nest a DATEADD function inside of the formula like so:
IF(
{Category} = "Observed Holiday",
IF(
{Reminder Date} = TODAY(),
DATETIME_FORMAT(
SET_LOCALE(
DATEADD(
{Reminder Date},
9,
'hours'
),
'America/New_York'
),
'LLL'
)
)
)
Here’s the behavior this returns:

@Ben.Young You meant to say SET_TIMEZONE
, not SET_LOCALE
.
@Ben.Young You meant to say SET_TIMEZONE
, not SET_LOCALE
.
oops lol
Good catch!
@Sharon_Visser, just a heads up while I edit things.