Rating behaviors | XM Community
Skip to main content
Solved

Rating behaviors

  • June 5, 2020
  • 2 replies
  • 9 views

Hey! I have a list of 30 behaviors, with the respondent being asked to mark those he/she has committed. I would then like to choose the most serious behavior and continue to ask him about it.
I have a list of the order of behaviors.
I need help with :
a. How to make Qualtrics detect the most severe behvior.
b. How to include the behavior descreption the text ,in the following questions.
I would love ideas on how to address this issue
Thanks

Liat

Best answer by TomG

In the survey flow create a blank 'mostSevere' embedded data variable, followed by branches in severity order to assign a value to the embedded variable. Then pipe 'mostSevere' into your follow-up questions. Survey flow would be something like:
Question Block w/ Q1 Behaviors Question
mostSevere = blank (i.e., populated from URL or contact list)
if Most severe choice is selected in Q1
mostSevere = ${q://QID1/ChoiceDescription/1}
if 2nd most severe choice is selected in Q1
AND mostSevere is Empty
mostSevere = ${q://QID1/ChoiceDescription/2}
if 3rd most severe choice is selected in Q1
AND mostSevere is Empty
mostSevere = ${q://QID1/ChoiceDescription/3}
etc...

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 6083 replies
  • Answer
  • June 5, 2020

In the survey flow create a blank 'mostSevere' embedded data variable, followed by branches in severity order to assign a value to the embedded variable. Then pipe 'mostSevere' into your follow-up questions. Survey flow would be something like:
Question Block w/ Q1 Behaviors Question
mostSevere = blank (i.e., populated from URL or contact list)
if Most severe choice is selected in Q1
mostSevere = ${q://QID1/ChoiceDescription/1}
if 2nd most severe choice is selected in Q1
AND mostSevere is Empty
mostSevere = ${q://QID1/ChoiceDescription/2}
if 3rd most severe choice is selected in Q1
AND mostSevere is Empty
mostSevere = ${q://QID1/ChoiceDescription/3}
etc...


  • Author
  • 2 replies
  • June 5, 2020

Many thanks, I will try it !