Skip to main content

Looking to put together a VR on the Opportunity object so that users cannot enter Close Dates in the past. This not only applies to new Opportunities, but in-flight as well that may already have close dates in the past but need another field updated etc. 

 

Thank you in advance! 

2 réponses
  1. 23 févr. 2023, 17:21

    I would probably write it something like this:

     

    OR(

    AND(

    ISNEW(),

    ClosedDate<TODAY()

    ),

    AND(

    ISCHANGED(ClosedDate),

    ClosedDate<TODAY()

    )

    )

0/9000