Leiste mit Community-Erfolgen erweitern.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.

GELÖST

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 Akzeptierte Lösung

Avatar

Korrekte Antwort von
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

Lösung in ursprünglichem Beitrag anzeigen

4 Antworten

Avatar

Korrekte Antwort von
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,

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

Avatar

Community Advisor