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
VIKASH CHAND KUMARVIKASH CHAND KUMAR 

Workflow to not fire if one of the field out of 90 is created or edited

Hi , i am trying to write workflow rule to not fire if one of the field out of 90 filed is created or edited.

my rule is 

AND(NOT( ISNEW() ),  field1 = TRUE, NOT(ISCHANGED(field1 ))) . 

I want to include my condition, if one field 'field3' is updated/created this workflow should not fire.