I have four questions that are in the same randomization group. I have set things up to display only one of these four to the user. However, they all have the same button options, but what I want to achieve is that if a user clicks the button that says "Yes", they should be sent to a particular URL, otherwise, they shold be sent to another URL.
I have the following in my END URL:
{if(G03Q11=="Yes" OR G03Q12=="Yes" OR G03Q13=="Yes" OR G03Q14=="Yes", "
mainurl.com
", "https://alternate url.com")}
I have observed that all users get sent to https://alternate url.com even when their choice is "Yes". Can someone please advise on what I am doing wrong?
Thanks.