Skip to main content
Level 2
October 9, 2023
解決済み

NPS survey in Marketo that captures score over time

  • October 9, 2023
  • 2 の返信
  • 1801 ビュー

Hello all. We are thinking of leveraging Marketo to generate NPS surveys, but we would like to retain the scoring over time, so we could analyse its progression. We did some tests and built a program for that, but it only retains the latest score. Has anyone been able to achieve the same thing? Any advice would be appreciated. Thank you!

このトピックへの返信は締め切られました。
ベストアンサー derelict_wombat

I think you can do this with  2 fields. 

 

- NPS Score  (Score field)

- NPS Score Appended (or something similar)  (Text Field)

 

NPS Score would collect the latest score

"NPS Score Appended" would be a text field that would add the latest score and the date to the text file

See how to append data to a field here
https://experienceleague.adobe.com/docs/marketo/using/product-docs/core-marketo-concepts/smart-campaigns/flow-actions/append-data-to-a-field.html?lang=en

2 の返信

derelict_wombat
Level 5
October 9, 2023

I think you can do this with  2 fields. 

 

- NPS Score  (Score field)

- NPS Score Appended (or something similar)  (Text Field)

 

NPS Score would collect the latest score

"NPS Score Appended" would be a text field that would add the latest score and the date to the text file

See how to append data to a field here
https://experienceleague.adobe.com/docs/marketo/using/product-docs/core-marketo-concepts/smart-campaigns/flow-actions/append-data-to-a-field.html?lang=en

Romina-2作成者
Level 2
October 17, 2023

Thank you for the suggestion. Will give it a try.

SanfordWhiteman
Level 10
October 9, 2023

Expanding on @derelict_wombat’s correct answer, you can make the history field useful to your data team by using partial JSON format.

 

When you append to the field, add a comma and then a JSON object in curly brackets {}:

{{lead.History Field}}, { "{{system.DateTime}}" : {{lead.NPS Score}} }

 

This is a “partial” JSON array because it lacks enclosing square brackets [], but since the format is otherwise good JSON, your team can add those and then parse the value as a true sequential list.

Romina-2作成者
Level 2
October 17, 2023

Thank you for this. Will try implement it.