Problem :
Let's say the survey is 4 questions long. The questions are...
| No | | Q Code | | Question | | Type |
| 1. | | everbuy | | Do you ever buy coffee? | | Y/N |
| 2. | | howmany | | How many coffees a day do you drink? | | List (dropdown) |
| 3. | | umadbro | | Do you regularly eat donuts? | | Y/N |
| 4. | | ulift | | Do you even lift brah? | | Y/N |
Suppose I want to ask the first question, and then, if the answer is "Yes", I want to move straight to the 2nd, 3rd and 4th question. If the answer to the first question is "No", then I want to move to question 4 directly and continue on.
Solution :
The solution is as follows..
1. Log in to the admin section of the survey site.
2. Click Surveys.
3. Click the survey you want to adjust.
4. Click 'List Questions' in the left hand side.
5. For question 2, click the 'Edit question' button on the far right hand side opposite.
6. In the
Relevance Equation box, type
everbuy == "Y"
7. Click 'Save and Close'
8. For question 3, click the Edit question button on the far right hand side.
9. Again, in the
Relevance Equation box, type
everbuy == "Y"
10. Click 'Save and Close'
The survey will now only show Q2 and Q3 if the answer to Q1. was 'Yes' and thus skip directly to Q4 if 'No' is give as a first answer.