Skip to main content

Hello Everyone,

 

I've noted that there seems to be a logic flaw in my criteria for a process builder I have created

 

([ts2__Application__c].Employment_Type_Application__c )="Contract"

&&

NOT(ISNULL([ts2__Application__c].ts2__Application_Source__c.Name))

&&

NOT(ISNEW())

 

Conceptually, the process is supposed to trigger when an application record is edited (not newly created) and the Application Source field has an entered value. Unfortunately, it seems the process triggers even if there no value in the Application Source field.

 

If anyone can identify where I went wrong that would be greatly appreciated.

 

Thanks,

Michael

3 comentários
  1. 2 de mai. de 2019, 12:11
    You should also check the Application_Source__c before you traverse to the name. So you need to add NOT(ISBLANK(ts2__Application__c].ts2__Application_Source__c)).
0/9000