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
JasonKlass.ax966JasonKlass.ax966 

Workflow Every time a record is edited

I want to trigger a workflow every time a record is updated.  I used this formula from SF: 

 

https://help.salesforce.com/apex/HTViewSolution?id=98335&language=en

 

It works, bu the problem is that it triggers both when the record is created AND when it's edited.  I only want it to trigger when the record is edited.  How can I exclude records that are being created?

Best Answer chosen by Admin (Salesforce Developers) 
flewellsflewells
Include the ISNEW and NOT functions in your formula. It will be something like: && NOT(ISNEW())

All Answers

flewellsflewells
Include the ISNEW and NOT functions in your formula. It will be something like: && NOT(ISNEW())
This was selected as the best answer
JasonKlass.ax966JasonKlass.ax966

Doh!  That was so simple!  Thanks!