Hi team,
Here’s the context
2 fields:
Scheduled date
: A Date field with ISO format, 24h format, it includes Time and uses GMT for all collaborators
Date validation
: A formula field that runs the following code:
IF(
AND(
{Scheduled date},
NOW() >= {Scheduled date}
),
"Ready", "In Review"
)
Problem:
When Scheduled date = Today, the formula returns Ready, ignoring the time.
For instance:
Case A
- Scheduled date = 2022-08-23 18:00 GMT
- NOW() = 2022-08-23 19:00 GMT
The formula returns Ready
Case B
- Scheduled date = 2022-08-24 18:00 GMT
- NOW() = 2022-08-23 19:00 GMT
The formula returns In Review
Could it be that NOW() doesn’t care about time? or is it using a different Time Zone?