How is the best way to repeat the block until you get the right answer. | XM Community
Skip to main content
Solved

How is the best way to repeat the block until you get the right answer.

  • November 5, 2020
  • 2 replies
  • 68 views

Forum|alt.badge.img+1

Hi everyone.
How is the best way to repeat the block until you get the right answer in Qualtrics.
Please tell me.

Best answer by Radam

I've never found a way to loop, but you can just nest multiple conditional branches, with the logic "if question != right answer" display the same block. If there are 4 possible answers, do it 4 times to cover all the possible choices.

2 replies

Radam
Level 4 ●●●●
Forum|alt.badge.img+33
  • Level 4 ●●●●
  • Answer
  • November 5, 2020

I've never found a way to loop, but you can just nest multiple conditional branches, with the logic "if question != right answer" display the same block. If there are 4 possible answers, do it 4 times to cover all the possible choices.


Forum|alt.badge.img+1
  • Author
  • November 6, 2020

I see!
Your idea is using javascript!
I hadn't thought of it that way.
Thank you.