My process starts with the Clearbit object, this is a custom object from an installed package.
Conditions are (all of the conditions are met):
[cbit__Clearbit__c].cbit__Lead__r.cbit__Clearbit__c is null False
[cbit__Clearbit__c].cbit__CompanyGeoCountry__c is null False
Immediate actions:
- Update a record related to Clearbit: [cbit__Clearbit__c].Lead
Set new fields:
Country Reference [cbit__Clearbit__c].cbit__CompanyGeoCountry__c
State/Province Reference [cbit__Clearbit__c].cbit__CompanyGeoState__c
Not sure what's up. But the community rocks and I know we will figure it out together!
Thank you!!
11 件の回答
How about we use a Formula instead of conditions=
AND(
NOT(ISBLANK([cbit__Clearbit__c].cbit__Lead__c)),
NOT(ISBLANK([cbit__Clearbit__c].cbit__Lead__r.cbit__Clearbit__c)),
NOT(ISBLANK([cbit__Clearbit__c].cbit__CompanyGeoCountry__c))
)