SOLVED

Person Score Change Data Value Formula

Go to solution
mdeckman
Level 1

Person Score Change Data Value Formula

For Demographic and Behavioral Scores, we use a "score cap" so that these scores cannot go above a certain limit so that our score degradation models work properly. I.E. if score goes above 100, reset to 100. But this causes a problem where the Person Score does not get reduced.

 

I would like to know if you can build Person Score in a change data value flow step something like: {{lead.mkto_Demographic Score}} + {{lead.mkto_Behavior Score}}. If so, what would be the correct syntax? I've tried multiple ways to no avail. 

1 ACCEPTED SOLUTION

Accepted Solutions
Michael_Florin
Level 10

Betreff: Person Score Change Data Value Formula

Not possible, unfortunately. Marketo is bad at math.

 

Usually, folks recommend third-party services like FlowBoost to help with that.

View solution in original post

2 REPLIES 2
Michael_Florin
Level 10

Betreff: Person Score Change Data Value Formula

Not possible, unfortunately. Marketo is bad at math.

 

Usually, folks recommend third-party services like FlowBoost to help with that.

SanfordWhiteman
Level 10 - Community Moderator

Betreff: Person Score Change Data Value Formula

Indeed, with FlowBoost it’s as easy as

personScore = +{{lead.Behavior Score}} + 
    +{{lead.Demographic Score}} +
    +{{lead.Firmographic Score}};

and so on.