function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DrewBDrewB 

Workflow rule when a date is changed

I need a workflow email to generate when someone changes a date field (could be past or future) I need this email to send anytime the date is changed. I am having difficulty building the rules for this workflow. Can anyone help define what I should write in for this?

 

Thank you

yudhvirmoryudhvirmor

create workflows that says Trigger when record created or edited. if you want to trigger the workflow only for existing records.

AND(ISNEW()=FALSE,ISCHANGED(CloseDate))