How to construct a DateTime value?

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!

Solved Solved
0 3 87
1 ACCEPTED SOLUTION

Date + Duration = DateTime

View solution in original post

3 REPLIES 3

Date + Duration = DateTime

I used:

NOW() > [Date] + (โ€œ11:00:00โ€ - โ€œ00:00:00โ€)

And seems working. Thank you @Marc_Dillon

NOW() > [Date] + โ€œ011:00:00โ€

should work the same

Top Labels in this Space