Insert Answers / Variables with {{ QX }}.
The double squiggly bracket format {{ }} allows you to pipe in...
- respondent's answers from previous questions {{ QX }},
- variables {{ variable:key }} and lists {{ list_name }} from survey logic, and
- loop variables {{ loop_variable }} and crd values {{ crd_key }}
...into your question or options
Answers from Previous Questions
- {{ QX }} will insert the answer from the previous specified question.
- if multiple answers, then all answers will be injected, but separated by commas.
- {{ QX.1 }} will insert the Answer from 1st statement of previous question
- {{ QX.2.1 }} will inject the 1st Answer from the 2nd statement of previous question
- {{ QX~1 }} will pipe in the 1st Text answer from previous question. Use this to carry forward text answer from Choices with Text Capture enabled, e.g. from "Other (please specify)" and add logic: display... choice {{ QX~1 }} when... respondent selected "Other (please specify)"
- {{ QX#1 }} will carry forward the 1st Numeric answer from previous question
Variables & Lists from Logic:
- {{ variable:key }} will inject the variable value from your Survey Logic.
- {{ list_name }} will insert the list items from your Survey Logic.
- {{ list_name.3 }} will pipe in the 3rd list item from your Survey Logic.
Loop variable and CRD values:
- {{ loop_variable }} will inject the loop variable that you've setup in your Survey Settings > Groups.
- {{ crd_key }} will insert the crd value appended to the end of your Glow survey link.
- e.g. using "?crd_key1=value1&crd_key2=value2"