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 140
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