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
Jennifer.SchnellJennifer.Schnell 

Process Builder Formula Help

I need assistance building a formula for a Task creation PB.  The formula is for an action "Assign to ID". 

This is on a contact record, right now "Assign to ID" is set to "BDR_Owner_c.  However this is causing flow errors when a user creates a new contact and the BDR_Owner_c" field is blank.  Looking to replace it with a formula -
If BDR_Owner_c is blank assign to Owner of Contact.
Process Builder Actions for Task Creation
Best Answer chosen by Jennifer.Schnell
Balayesu ChilakalapudiBalayesu Chilakalapudi
Try like this,
 
IF([Contact].BDR_Owner__c==NULL,[Contact].ownerId,[Contact].BDR_Owner__c)

Let us know if it helps.