Adobe Launch tracking multi-choice | Community
Skip to main content
Luca_Lattarini
New Participant
July 23, 2020
Solved

Adobe Launch tracking multi-choice

  • July 23, 2020
  • 1 reply
  • 883 views

Hello everyone,

 

Any suggestion how to track multi-choice in the form? I was thinking to send a beacon to Analytics with chosen elements and read them by using classification.

Thanks,

Luca

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 Brian_Johnson_

Hi, @luca_lattarini - I would suggest tracking all selected options when the form is submitted. Capturing the data in either a list-enabled prop or a listVar would make it so classifications (for breaking the data apart) wouldn't be necessary.

For example, either of the following approaches would let you report on "red," "yellow," and "blue" as individual line items:

s.prop1 = "red,yellow,blue"; // OR s.list1 = "red,yellow,blue";

 

 

1 reply

Brian_Johnson_
Brian_Johnson_Accepted solution
New Participant
July 23, 2020

Hi, @luca_lattarini - I would suggest tracking all selected options when the form is submitted. Capturing the data in either a list-enabled prop or a listVar would make it so classifications (for breaking the data apart) wouldn't be necessary.

For example, either of the following approaches would let you report on "red," "yellow," and "blue" as individual line items:

s.prop1 = "red,yellow,blue"; // OR s.list1 = "red,yellow,blue";