Rule Based Trait/Segment Question | Community
Skip to main content
Level 3
April 15, 2019
Solved

Rule Based Trait/Segment Question

  • April 15, 2019
  • 2 replies
  • 3767 views

Hi,

Here is my simple use case:

we wanted to show the targeted content using Adobe Target for those who started filling the form steps but not yet completed.

Tracking the Form steps in specific eVarX(Adobe Analytics) and forwarding the same to AAM too.

Step1:

s.evarX = "form:step1"

Step2:

s.evarX = "form:step2"

.

.

.

Last Step/Confirmation page:

s.evarX = "form:step7"

So, the question is - if we go ahead the create rule based trait as below, will it work?

Rule Based Trait:

c_evarX == "form:step1"

       AND NOT

c_evarX = "form:step7"

Thanks

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 shweta_singh

Hi muthalagua77286047

The trait expression c_evarX == "form:step1" AND NOT c_evarX = "form:step7" will work fine if we only want to target users who started filling up the form and have not completed it.

However,if we also want to track the progress of other steps also,then w e can build the expression like:

(c_evarX == "form:step1" OR c_evarX == "form:step2" OR -----c_evarX == "form:step6")  AND NOT (c_evarX = "form:step7")

2 replies

shweta_singhAdobe EmployeeAccepted solution
Adobe Employee
April 18, 2019

Hi muthalagua77286047

The trait expression c_evarX == "form:step1" AND NOT c_evarX = "form:step7" will work fine if we only want to target users who started filling up the form and have not completed it.

However,if we also want to track the progress of other steps also,then w e can build the expression like:

(c_evarX == "form:step1" OR c_evarX == "form:step2" OR -----c_evarX == "form:step6")  AND NOT (c_evarX = "form:step7")

MA1985v1Author
Level 3
April 18, 2019

Thanks @ShwetaSingh