Solved
Trying to use Q_PopulateResponse and branching logic together?
I'm using an anonymous link with 2 different query strings to post a survey on an intranet page: 1 string for Yes answers to the first question and 1 string for No answers. Question 2 uses branching logic based on the answer to question 1.
I'm using Q_PopulateResponse to gather the answer for question 1 from the anonymous link on the intranet page. When a user clicks the link, the survey opens and they see Q1 with their answer auto-populated. I've set up an auto-advance timer for the smallest increment of time (.1) and the branching logic does work properly. But Q1 does flash briefly on the screen. Ideally, I'd like the survey to open on the next question in the survey when they click the Yes or No button the intranet page.
Is there a way to not show Q1 at all with q_populateresponse? Or another workaround that isn't creating a Yes survey and a No survey?
Thanks in advance for your time!
Dawn
Best answer by TomG
So if you can't use an embedded data field, you could add a lot of padding to the top of Q1 to push it off the bottom of the page. That way respondents will just see a blank page when it flashes by. Just add something like this to the top of your question text in html mode:
```
<div style="padding-top:2000px"></div>Your question text here.
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.