Attention: The Marketo Community will undergo scheduled maintenance on Tuesday, August 20th between 10-11 PM PDT. During this time, the Community and its content will not be accessible. We apologize for any inconvenience this may cause.

Marketo Mondays Episode 2 - Product specific flame icons in Salesforce

Gerard_Donnell4
Level 10

Marketo Mondays Episode 2 - Product specific flame icons in Salesforce

Marketo Mondays Episode 2 - Custom product scoring and flame icons in Salesforce - YouTube

In this episode I'll look at how to score an individual product and create custom flame icons similar Marketo Sales Insights.

Individual product scoring is not an easy thing to do so only do it if your company is really demanding it.

This is the Formula code I used:  Sanford Whiteman​ Feel free to rewrite correctly

IF(

Campaign_Lead_Score__c <= 0,

IMAGE("/servlet/servlet.FileDownload?file=0150N000006U1a5", "0"),

IF(

Campaign_Lead_Score__c <= 30,

IMAGE("/servlet/servlet.FileDownload?file=0150N000006U21V", "1"),

IF(

Campaign_Lead_Score__c <= 60,

IMAGE("/servlet/servlet.FileDownload?file=0150N000006U224", "2") ,

IF(

Campaign_Lead_Score__c >= 61,

IMAGE("/servlet/servlet.FileDownload?file=0150N000006U229", "3") ,

NULL

)

)

)

)