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
gringoesegringoese 

Run Workflow rule when any field in record is updated

I know you can use ISCHANGED() to see if 1 or more fields have changed as workflow rule criteria, but what if I want to run my workflow rule when any field is changed in an Opportunity Record? I would want to check if there was any change made to the entire record. Is there a way to check for that?

*werewolf**werewolf*

Well you don't really have to check for criteria for that.  Just set the workflow rule to "Whenever A Record Is Created Or Edited," and then set some criteria that will always be true, like Created Date Not Equal To <blank>.  Then it will fire every time the record is created or edited.