Expand my Community achievements bar.

Join us for an upcoming in-person Adobe Target Skill Builders event ~~> We're hosting these live learning opportunities to equip you with the knowledge and skills to leverage Target successfully. Learn more to see if we'll be coming to a city near you!
SOLVED

Isolate Target Activities from each other

Avatar

Level 2

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!

1 Accepted Solution

Avatar

Correct answer by
Employee

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';}

}

View solution in original post

3 Replies

Avatar

Correct answer by
Employee

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';}

}

Avatar

Level 2

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

Avatar

Employee

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