
The second issue that I am seeing is that the ClosedDate can be set to a date BEFORE the CreateDate of an Opportunity, again, I believe that a Validation Rule should be in place to prevent the population of a ClosedDate to any value LT the CreatedDate... And presumably the CreateDate = CloseDate is only for erroroneous set ups...
Once again can an expert please validate my belief... ;>)
6 risposte
I would use the isClosed field -- not the picklist values, because if a value is changed, or a new one is added, your VRule would not work. AND(
isClosed,
CloseDate < DATEVALUE(CreatedDate)
)