Skip to main content
I posted a pic below. I have this set so it will only fire when the following field is changed. It still fires the Process and creates errors because the field is blank. Any help would be great.Process builder Fires even when field not changed
10 answers
  1. Feb 10, 2021, 10:16 PM

    Are you trying to do something like this?

    AND(

    OR(

    ISNEW(),

    ISCHANGED([Contact].FieldName)

    ),

    NOT(ISBLANK([Contact].FieldName)),

    )

    or this

    AND(

    ISCHANGED([Contact].FieldName),

    NOT(ISBLANK([Contact].FieldName))

    )

     

     
0/9000