I've tried this but it still fires the email when you first populate the date:
AND(
NOT (ISNEW ()),
ISCHANGED(([Opportunity].Requested_Trial_Start_Date__c )))
답변 10개
Hi Sara, Let's try this:
AND(
NOT (ISBLANK (PRIORVALUE([Opportunity].Requested_Trial_Start_Date__c ))),
ISCHANGED(([Opportunity].Requested_Trial_Start_Date__c )))