How can I filter how many questions have been answered? | XM Community
Skip to main content
Solved

How can I filter how many questions have been answered?

  • June 3, 2020
  • 2 replies
  • 47 views

Hi all! Does anyone know how I can add a filter to my survey that tells me how many questions have been answered? I have a progress column, but I'd like to know how many trials each participant sat through, thanks in advance!

Best answer by bmcgrath

This would be step-by-step, so how long it takes to write depends on how many trials you have, but you could create one extra embedded data field per question/trial and then branch within the survey flow after each question so that: if the response to previous question is empty, ed1 = 0; else ed1 = 1. And then add up ed1 ... edN in the survey flow using something like ${e://Field/ed1}+${e://Field/ed2}+${e://Field/ed3}

2 replies

Forum|alt.badge.img+3
  • Level 2 ●●
  • 50 replies
  • Answer
  • June 4, 2020

This would be step-by-step, so how long it takes to write depends on how many trials you have, but you could create one extra embedded data field per question/trial and then branch within the survey flow after each question so that: if the response to previous question is empty, ed1 = 0; else ed1 = 1. And then add up ed1 ... edN in the survey flow using something like ${e://Field/ed1}+${e://Field/ed2}+${e://Field/ed3}


  • Author
  • 1 reply
  • June 5, 2020

Fab thanks so much!