Need to capture maximum for Lead Score | Community
Skip to main content
Andy_Varshneya1
New Participant
April 28, 2016
Solved

Need to capture maximum for Lead Score

  • April 28, 2016
  • 1 reply
  • 2477 views

I'm working to do some analysis regarding lead score movement and need to track what a lead's max lead score all time is. I can't go with just {{lead.Lead Score}} since I also have programs that depreciate the lead score. Therefore, I've created a new Score field that exists only to capture the highest score a lead reaches.

The problem I'm facing is with watching for positive movement in the lead score. Ideally, the logic would be something like

but as you can see, tokens are not an option for the New Value constraint. Similarly, if I try to use the Score is Changed trigger, the constraint is limited to IS and IS NOT, which means while it is entirely possible, it is not ideal since I'll have to create a new trigger for every possible score change.

Now, I know there is the option of setting the smart list to only Data Value Changes attribute: Lead Score with no constraints, and then in the flow say

but I'm trying to avoid going down that path since it's not operationally efficient. Is that my only option though?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Grégoire_Miche2

Hi Andy,

The only possibility here would be a webhook. YOu would push the lead score and the max lead score, and it will return the highest of the 2. Hoosh has a new webhook accessible web service that can compute the max between 2 numbers, that you could store in the max field.

See @Fab Capodicasa​.

-Greg

1 reply

Grégoire_Miche2
Grégoire_Miche2Accepted solution
New Participant
April 28, 2016

Hi Andy,

The only possibility here would be a webhook. YOu would push the lead score and the max lead score, and it will return the highest of the 2. Hoosh has a new webhook accessible web service that can compute the max between 2 numbers, that you could store in the max field.

See @Fab Capodicasa​.

-Greg

Andy_Varshneya1
New Participant
April 28, 2016

Thanks Greg.

I'm guessing you're referring to Excel Formulas for Marketo – Marketo LaunchPoint

Wouldn't a webhook put an equal amount of strain on the system since it would call the webhook at every single lead score change?