How to calculate returning visitors in AA
Hi Team,
How can I create calculated metric for returning visitors or do I need to create segment for this. If yes, how can I do that.
Hi Team,
How can I create calculated metric for returning visitors or do I need to create segment for this. If yes, how can I do that.
Hi Bindu
You can create a segment as mentioned appropriately by Andrey. I am adding a few more ways to keep a track of new and repeat visitors. One way is to simply create the ‘rule’ in adobe launch by adding the extension Common Analytics Plugins. Attaching the screenshot of steps that you need to follow.


Then further you can set the variables as in the corresponding eVar that will store the new/Repeat visitor value.
Another way is to create a Data Element newRepeat and add the following code snippet :
var newRepeat = document.cookie.indexOf('s_nr') > -1;
if(newRepeat) {
return "Repeat";
} else {
return "New";
}

It’ll help in tracking the returning visitors. Let me know if this answers your question.
Thanks
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.