Expand my Community achievements bar.

SOLVED

Adobe Launch tracking multi-choice

Avatar

Community Advisor

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

1 Accepted Solution

Avatar

Correct answer by
Level 8

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";

 

 

View solution in original post

1 Reply

Avatar

Correct answer by
Level 8

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";