Question Content Reference
Replace parts of question content with answers from previous questions or specified text.
Reference Selected Options
Example
Q1. Which messaging app do you use daily? [Single Choice] Q1
- A. QQ
- B. WeChat
- C. Weibo
Q2. What suggestions do you have for XXX? [Text] Q2
Custom Logic
replace "XXX" in Q2 title with Q1 #Replace XXX in Q2 with Q1's answer
Preview
For better content replacement preview, it's recommended to add logic like
if Q1 then show Q2
to show Q2 only after Q1 is answered. Otherwise, Q2's content might look odd before Q1 is answered.Multiple replace
statements can be used for the same question.
Reference Text Input
Example
Q1. Which shopping mall do you frequently visit? [Text] Q1
Q2. How do you travel to XXX? [Single Choice] Q2
- A. Drive
- B. Metro
- C. Bus
Custom Logic
replace "XXX" in Q2 title with Q1 #Replace XXX in Q2 with Q1's answer
Preview
For better content replacement preview, it's recommended to add logic like
if Q1 then show Q2
to show Q2 only after Q1 is answered. Otherwise, Q2's content might look odd before Q1 is answered.Multiple replace
statements can be used for the same question.
Descriptive Text Reference
Example
Q1. What is your name? [Text] Q1
Q2. Dear XXX, thank you for taking time to complete this survey [Descriptive Text] Q01
Custom Logic
replace "XXX" in Q01 title with Q1
Preview
Descriptive text questions use identifiers like Q01
, Q02
because they don't count in the regular question numbering sequence.
Multiple replace
statements can be used for the same question.
Reference Specific Position from Previous Answer
Example
Q1. Rate the frequency of using these messaging apps: [Ranking] Q1
- A. QQ
- B. WeChat
- C. Weibo
Q2. Why do you use XXX most frequently? [Text] Q2
Custom Logic
# Replace XXX with the first-ranked answer from Q1. Use 1 for first place, 2 for second, etc.
replace "XXX" in Q2 title with Q1 index 1
Preview
For better content replacement preview, it's recommended to add logic like
if Q1 then show Q2
to show Q2 only after Q1 is answered. Otherwise, Q2's content might look odd before Q1 is answered.Multiple replace
statements can be used for the same question.
Conditional Text Replacement
Example
Q1. What is your age? [Text] Q1
Q01. Hello, you are a XXX user [Descriptive Text] Q01
Custom Logic
if Q1 >= 18 then replace "XXX" in Q01 title with "adult"
if Q1 < 18 then replace "XXX" in Q01 title with "minor"
Preview
Random Number Replacement
Example
Q1. How many children in your family have participated in or are currently participating in continuing education? [Text] Q1
Q01. Please answer the following questions based on your {{Q1}} children, specifically about the {{n}}th oldest child [Descriptive Text] Q01
Custom Logic
replace "{{n}}" in Q01 title with RANDBETWEEN(1, Q1)
replace "{{Q1}}" in Q01 title with Q1