Hello,
I have separate [Date] and [Time] values. I need to know please the way to join them together in a DateTime value, in order to use it in a Yes/No expression like:
NOW() > [DateTime]
I need to launch an action after a specific hour on a certain date, so Iām currently using:
OR(
TODAY() > [Date],
AND(
TODAY() = [Date],
TIMENOW() > "11:00"
)
)
Which could simply be reduced to: NOW() > [DateTime]
Thanks!