https://www.qualtrics.com/community/discussion/comment/32462#Comment_32462Showing and removing text in a question can be done through JS. However, the exact code will depend upon what type of questions you are using earlier. If you are comfortable with JS, then the flow would be simply to have a base text, which you will display for all choices, then based on the options chosen in the earlier questions, you append the relevant text and change what your are displaying with
jQuery("#"+this.questionId+" .QuestionText").html("Results Summary"); If on the other hand, you are not comfortable with JS, here is how I would recommend going about it.
- For each of the questions, 3 in your case, create an embedded data field which carries the summary for each answer you want to display at the end. Let call them "Sum1", "Sum2" and "Sum3". Make sure they are empty at the start.
- In the survey flow, after each of the questions, create a branch and set its condition to be something like
${q://QID5/ChoiceGroup/SelectedChoices} is not equal to zero
- In this branch, set your relevant embedded variable to whatever you want to display at the end. In the example you have given, you will probably set
Sum1
to Ungdom 349,- = ${q://QID5/ChoiceGroup/SelectedChoices}
- In the summary question (at the end). Display the general text and use piped data to show the answers that make sense. For example:
These are the options you have chosen:
${e://Field/Sum1}
${e://Field/Sum2}
${e://Field/Sum3}
If the fields are blank or unset, Qualtrics will display nothing. If they have a value Qualtrics will display that.