Isolate Target Activities from each other | Community
Skip to main content
Level 2
February 8, 2018
Solved

Isolate Target Activities from each other

  • February 8, 2018
  • 3 replies
  • 1899 views

Does anyone have some ideas how to isolate e.g. AB-test from each other. A method to make sure that if a visitors have been exposed for Activity X, then he won't be exposed for Activity Y.

I have tried to find some documentation on Adobe Target Helpsite but without luck!

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 siddharthjainPM

Audience using Visitor Profile type have an optiont o allow one to include only those visitors which are not other tests.

Alternately, you may create two mutually exclusive testing groups using Profile scripts and using those in Audience.

Profile script may be something like this.

if (!user.get('twoGroups')) {

var random_number=Math.floor(Math.random()*99);

if(random_number <= 49){return 'GroupA';}else{return 'GroupB';}

}

3 replies

siddharthjainPM
Adobe Employee
siddharthjainPMAdobe EmployeeAccepted solution
Adobe Employee
February 8, 2018

Audience using Visitor Profile type have an optiont o allow one to include only those visitors which are not other tests.

Alternately, you may create two mutually exclusive testing groups using Profile scripts and using those in Audience.

Profile script may be something like this.

if (!user.get('twoGroups')) {

var random_number=Math.floor(Math.random()*99);

if(random_number <= 49){return 'GroupA';}else{return 'GroupB';}

}

Level 2
February 9, 2018

Thanks Siddharth.J
Do you have a link to some further documentation from Adobe?

siddharthjainPM
Adobe Employee
Adobe Employee
February 13, 2018

The help page is Profile Script Attributes.​ However, it does not have examples/sample code. We will come up with documentation for same soon