Hello,
I am attempting to link a MailChimp Subsciber's subscription status to an unsubscribed checkbox on that corresponding Contact record, but I am unable where to find that information in SF to make that happen. Any suggestions? #Trailhead
1 resposta
#Mailchimp #Trailhead #MailChimp Integration
Hello @Randy King,
You can achieve this by making a Checkbox type Formula Field on the contact object and adding this below formula in that Formula Field
" IF(ISPICKVAL(MC4SF__MC_Subscriber__r.MC4SF__Member_Status__c,'Subscribed'),True, False) ".
This will be surely helpful for your requirement.
Thank You