Skip to main content

Search

If [Modified] Date is older than [TODAY]

Answered

Comments

3 comments

  • Official comment
    skybow Support

    Hi Joerg_K.

    new Date() gives you the current date including time, which is always bigger than the modified time. To compare it with the current date at midnight you would have to set the hours to 0 like this:

     

    [[Modified]] < new Date().setHours(0, 0, 0, 0)
     
    Hope this helps.
    Kind regards
    skybow Support
  • Joerg_K.

    Thanks a lot this works now as imagined :)

    0
  • skybow Support

    Great to hear, thanks for the feedback.

    Kind regards

    skybow Support

    0

Please sign in to leave a comment.