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
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()
)