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
I would probably write it something like this:
OR(
AND(
ISNEW(),
ClosedDate<TODAY()
),
AND(
ISCHANGED(ClosedDate),
ClosedDate<TODAY()
)
)