Overview
When setting up a predictive model with Leadspace, you will provided with a numeric predictive score (0-100) for each lead. It is best practice to convert these scores to different A-D buckets. This will help with prioritization, create better views/reports, campaigns, and helping sales team action based on account segments. This article will guide you on how to do this in Salesforce.
Setup
Under Setup section go to the 'Fields' section under the Account Object or Object Manager if you are in Lightning.
Object: Account
Create the following fields:
LS Predictive Score | Field Type: Number | Length: 3 | Decimal: 0
LS Predictive Segment | Field Type: Formula (Text) |
Formula:
IF(isblank(LS_Predictive_Score__c ),"", IF(LS_Predictive_Score__c >= 95, "A",IF(LS_Predictive_Score__c >= 80, "B",IF(LS_Predictive_Score__c >= 16, "C","D"))))
Blank Field Handling: Treat blank fields as blanks
NOTE: The numbers in this formula can be tweaked.
Now we will copy these fields down to the Contact level. Best practice is to only copy the 'LS Predictive Segment' field as this will be easier for your team to take action, segment, etc.
Object: Contact
Create the following fields:
LS Predictive Score | Field Type: Formula (Number) | Decimal: 0 (OPTIONAL)
Formula: Account.LS_Predictive_Score__c
Blank Field Handling: Treat blank fields as blank
LS Predictive Segment | Field Type: Formula (Text) |
Formula: Account.LS_Predictive_Segment__c
Blank Field Handling: Treat blank fields as blank
This way all contacts that are tied to the account will have the predictive score and segment as the account. This will help with creating views and reports that will help your sales team prioritize which accounts to target.
Object: Lead (NOTE: Must have Leadspace's Lead-to-Account Matching flow implemented)
Create the following fields:
LS Predictive Score | Field Type: Formula (Number) | Decimal: 0 (OPTIONAL)
Formula: Account.LS_Predictive_Score__c
Blank Field Handling: Treat blank fields as blank
LS Predictive Segment | Field Type: Formula (Text) |
Formula: Account.LS_Predictive_Segment__c
Blank Field Handling: Treat blank fields as blank
This way all Leads that are tied to the account will have the predictive score and segment as the account. This will help with creating views and reports that will help your sales team prioritize which accounts to target.
For additional questions regarding the setup of this campaign, please reach out to your CSM or email us at support@leadspace.com