Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Order value in dynamic content

Avatar

Level 2

Hello,

 

I know the answer but I just wanted to confirm. I have using 2 conditional statement (dynamic content) based on the following:

 

Default condition (show default image)

1: If Girl is checked: Show girl image - Order 1

2: If Boy is checked: Show boy image - Order 2

3: ?

 

Question1: These choices (Girl or Boy) are check boxes so they can select one or both. If they have selected both check boxes (Girl and Boy), the system show girl image since its listed as Order 1?

 

Questions 2: I was trying to create 3 dynamic content option/condition (so if someone have selected both values), I could show a third image but I can't able to create dynamic content condition based on this. I could only able pick one condition when creating dynamic content condition. Is that true?

 

Thanks!

 

 

 

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Sarim60660 ,

Solution for both questions are, you can make dynamic condition as follow,

 

If ( gender checkbox== Girl      AND     gender checkbox NOT EQUAL TO Boy)

{ DISPLAY CONTENT FOR GIRL}

 

else If ( gender checkbox== Boy      AND     gender checkbox NOT EQUAL TO Girl)

{ DISPLAY CONTENT FOR BOY}

 

else If ( gender checkbox== Boy      AND     gender checkbox == Girl)

{ DISPLAY 3rd CONTENT}

 

Else

{Default Content}

 

 

Regards,

ParthaSarathy S

View solution in original post

4 Replies

Avatar

Correct answer by
Community Advisor

Hi @Sarim60660 ,

Solution for both questions are, you can make dynamic condition as follow,

 

If ( gender checkbox== Girl      AND     gender checkbox NOT EQUAL TO Boy)

{ DISPLAY CONTENT FOR GIRL}

 

else If ( gender checkbox== Boy      AND     gender checkbox NOT EQUAL TO Girl)

{ DISPLAY CONTENT FOR BOY}

 

else If ( gender checkbox== Boy      AND     gender checkbox == Girl)

{ DISPLAY 3rd CONTENT}

 

Else

{Default Content}

 

 

Regards,

ParthaSarathy S

Avatar

Level 2
Hi Partha, Thanks for responding. Looks like I can only use your solution in Adobe Campaign Classic. In Adobe Campaign Standard (ACS), I could only use one condition in one rule. I don't think, I can able to use "And" or "Or" conditions in one rule in ACS. I tried but I don't see that option. Is that true or I should able to use "And" and "Or" statements in ACS as well? Please let me know if you have any insights. Thanks!! SK