Breaking Down same evars from different network call in one page load | Community
Skip to main content
New Participant
April 27, 2021
Solved

Breaking Down same evars from different network call in one page load

  • April 27, 2021
  • 1 reply
  • 1198 views

Hi All,

 

If I have a page where I want to track

1. button panels

2. radio button

 

I basically track both every time a customer interact with it. So in a single page load, user can click button 1 and button 2 before going to the next page.

 

Then 2 network call will appear using the same eVar with different name. e.g.
eVar2 = "button panels 1 pressed"

eVar2 = "radio button 1 pressed"

 

How am I able to get a reporting where I can see how many people selected button panel 1 AND radio button 1 ?

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 yuhuisg

You can use the eVar2 Instances metric. E.g. if your eVar2 is named "Customer interaction", then this metric is called "Customer Interaction Instances". An instance is a count of the number of times that the eVar had been set with a value, and does not count any subsequent persistences. So in your case, since your eVar2 is tracked when the user clicks the button panel or radio button, then the eVar2 instance returns the count of those clicks.

1 reply

yuhuisg
yuhuisgAccepted solution
New Participant
April 27, 2021

You can use the eVar2 Instances metric. E.g. if your eVar2 is named "Customer interaction", then this metric is called "Customer Interaction Instances". An instance is a count of the number of times that the eVar had been set with a value, and does not count any subsequent persistences. So in your case, since your eVar2 is tracked when the user clicks the button panel or radio button, then the eVar2 instance returns the count of those clicks.

New Participant
April 30, 2021

Thank you for the response @yuhuisg , but if I wanted to correlate eVar2 for clicks to eVar2 for the other value, is that not possible? is that mean I need to either capture those 2 values in 1 eVar without using breakdown in analysis workspace?

 

so for example instead of doing:

eVar2 = "button a clicked"

eVar2 = "radio button b also selected"

 

I should do
eVar2 = "button a clicked | radio button b also selected"

 

Is this right? I was just under the impression that breakdown in workspace can help this out .