Skip to main content
Hi all,

 

In oppportunities I want to make it madatory for the date selected for a for 'Closed Date' field, has to be later than the present date.

 

Any help will be much appreciated.

 

Thanks

 

Matt
3 answers
  1. Aug 11, 2016, 4:19 PM

    And if you don't want it to be today either, then  change the validation rule to be:

    CloseDate <= TODAY()

     

    My only concern is that this way no opportunity that has a close date in the past will be allowed to be edited by a user. Are you sure you want that to happen? If you want the rule to only fire for new records, then use this:

    AND(

    ISNEW(),

    CloseDate <= TODAY()

    )

0/9000