I am using a formula cell to check a date/time cell to confirm if the time in EST has occurred or not yet.
The Date/Time cell contains something like 5/12/2024 2:30pm EST
My Formula cell uses the formula:
IF(
AND(
{Start Date},
DATEADD({Start Date}, -5, 'hours') <= DATEADD(NOW(), -5, 'hours')
),
"true",
BLANK()
)
What I'd like to happen is for the Formula cell to return "true" when the Date/Time cell reads a time that is equal to or before the current Easter Standard Time. Note: I don't want it to use my current time zone because that can change based on where I am.
However, the problem I'm having is that it seems to be using my current time zone (which is CST).

