Expand my Community achievements bar.

Join us at Adobe Summit 2024 for the Coffee Break Q&A Live series, a unique opportunity to network with and learn from expert users, the Adobe product team, and Adobe partners in a small group, 30 minute AMA conversations.
SOLVED

Multiple value evar

Avatar

Level 4

Hello,

I'm trying to send data in on an eVar and struggling with the architecture of how to do it.

Users can select any number of states, and I would like to know which states they choose.

I could just comma delimit all the states on the evar and only populate each state's "cell" with the state's value when it's selected? Then break it out with classifications. That's the best I've got so far, but that would add each state as a dimension, which I'm not sure is the best approach for analysis.

Using 1 evar and classifications, what's the best approach for sending in some-to-many known values at once?

Thanks!

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi,

I would prefer to use a prop and make it a list prop by using a delimiter of my choice in the admin settings. This will enable to accept multiple values in the same prop. In reports, I can see the occurrence for each value chosen by the user in different rows. The only issue using a list prop that it only accepts 100Chr max. which can be solved using a shortcode for each value.  Better if this is an issue I will go for listVar which does the same job as above but allows 250 values having max 255 Chr for each of them.

useful links:

List Variable

List Props

View solution in original post

4 Replies

Avatar

Correct answer by
Community Advisor

Hi,

I would prefer to use a prop and make it a list prop by using a delimiter of my choice in the admin settings. This will enable to accept multiple values in the same prop. In reports, I can see the occurrence for each value chosen by the user in different rows. The only issue using a list prop that it only accepts 100Chr max. which can be solved using a shortcode for each value.  Better if this is an issue I will go for listVar which does the same job as above but allows 250 values having max 255 Chr for each of them.

useful links:

List Variable

List Props

Avatar

Community Advisor

Dear Mooreevan,

I would suggest ListVar if you are going to attribute conversion metrics to it.

Yes, once you tag, the states will be captured as individual line items. If you want to understand the customers those have selected 2/3/n states together, you should go for Segmentation.

If you have lesser states (The character of all the states combined together including delimiter is less than 255 Character Bytes), I would prefer an Single eVar sorted properly by Ascending or descending order to capture it.

Let's say, a customer selecting Agra and Delhi, then eVar would be 'Agra,Delhi'. Now we can understand the instances/conversion metrics with two states together and then classifying it based on delimiter also to understand individual state.

The portion is little tricky, so decide it wisely.

Thank You!

Arun

Avatar

Level 5

Hi,

We have a prop which is enabled as List and delimiter is provided in Admin tools. When we try to use that prop as a dimension to generate report in Analytics workspace, do we need do some configuration to split it with delimiter or is it automatically taken care? Right now, we still see comma separated values in workspace.

 

Thanks

Srikanth

 

Avatar

Level 4

Thank you! We have not yet used our list vars so I had forgotten they are an option. I will look into both your options, but they sound promising.