[open] Failure to save output of multiple choice question
Hello everybody, I hope one of you can help me. I need to understand what is missing in my questionnaire. I can see the outputs from all of the form_text_input questions, but not from the form_multiple_choice questions. I made a sequence for the questionnaire and put a logger at the end of all questions. They do not appear under the response variable name that I gave. Here is the code of one multiple choice questions with missing answers:
set timeout infinite
set spacing 10
set question "During your weekly leisure/recreation time, do you practice physical activities?" options Always Sometimes Rarely Never end
set margins "50;50;50;50"
set form_var freq_pract_ltpa_week
set form_title "Question 3"
set description "Collects keyboard responses"
set button_text Ok
set allow_multiple no
set advance_immediately no
set _theme gray
Thanks for helping me once more! Gabriela
Comments
Hi,
What exactly do you mean when you say "missing answers"? From what you describe, it sounds like the responses of all preceding questions are overwritten by the last question, because they all write to the same variable. Could this be your issue?
Eduard
Hi Eduard,
The missing answers are the questions that have no answers or columns formed in the output.
The questions received different names. Here, the example that I showed the variable is form_var freq_pract_ltpa_week , but all of the them have different names.
So I imagine this makes them different variables.
The only think they have in common is the logger which is the same...
What should I do?