Using Outlook or Google Apps

Be Ruthless

Global and State-Based Companies

Company Names

General Contacts

Not all Data

Capitalisation

Indicators

IF( LEN( Phone) = 0, 0,10) + IF( LEN( MobilePhone ) = 0, 0,10) + IF( LEN( Email) = 0, 0,20) + IF( LEN(MailingStreet) = 0, 0,20) + IF( LEN(Title) = 0, 0,20) + IF( ISPICKVAL(Salutation,""), 0,20)
IF( DataQualityScore__c <= 20,IMAGE("https://login.salesforce.com/logos/Custom/Flag_Red/logo.png","Not enough Contact info",60,60),"")Here's a formula to add the data quality score to your Indicators (see below)

Why does your Data Exist?

Updating Data

International Data

One Contact Many Companies

Invalid Emails

NOTE: If you have GDPR requirements you need more than this. Seek help from the experts. 

Use this if you also have an external app that is updating the Bounce status

IF(OR(NOT(ISBLANK(EmailBouncedDate)),EmailBounced__c=true),true,false) 

Or this if it's just within Salesforece (and Campaign Monitor or Mailchimp for Salesforce). 

IF(NOT(ISBLANK(EmailBouncedDate)),true,false)

Sets Email Bounced Date (standard field) to the Last Modified Date from Campaign Monitor Subscriber List Member. 

Using Field State In Campaign Monitor Subscriber List Member

This one has NPSP Do Not Contact included also. This also includes the letter B, V or O next to the envelope, to tell what issue it is. It's a bit ugly so remove that if not necessary. 


IF(ISBLANK(Email),"", 
IF( OR(HasOptedOutOfEmail = true, IsBounced__c = true, npsp__Do_Not_Contact__c = true, NoValidEmail__c = true), 
IMAGE("https://login.salesforce.com/logos/Custom/Mail_Red/logo.png","Do Not Email",20,20)& 
IF(OR(npsp__Do_Not_Contact__c = true, HasOptedOutOfEmail = true),"O",IF(IsBounced__c = true,"B",IF(NoValidEmail__c = true,"V",""))), 
IMAGE("https://login.salesforce.com/logos/Custom/Mail_Green/logo.png","Do Not Email",20,20)))

  • Add the extra fields to your Contact layout.

This indicator shows: They are part of a Household; They have been included on Campaigns that are Events; They are a Campaign Monitor Subscriber; They have an issue with their email Address; They are affiliated with another Organisation (NPSP)

This is all done with a few key fields and Declarative Lookup Rollup Summary tool.