Example: User converts Lead to existing Contact , “Converted from Lead” checkbox equals True. Not sure why Salesforce doesn’t provide an isconverted Contact field to support comprehensive analytics.
How are Admins addressing this limitation?
8 个回答
Hi Erin,
You can accomplish this using Process Builder - you would just select Converted Contact ID as the related record to update.
Your process would start on the Lead object (when a record is created or edited)
...and your entry criteria would look like this:
[Lead].IsConverted | Equals | Boolean | True
AND
[Lead].Converted_from_Lead__c | Equals | Boolean | True
The 'Update Records' immediate action would just be to update the custom checkbox field on the Contact:
CheckboxField__c | Boolean | True