I've created a (not yet activated) survey that mostly contains multi-choice design questions. I have been instructed to include a short sentence such as "You have answered this incorrectly (or correctly)" for every possible answer. These short `feedback phrases` should be visible to the survey participant after completing the survey. In addition, it should also be displayed at the end of the survey, which answers are correct (per question), and which are wrong. There should also be an explanatory text per question. The whole thing should look something like this:
Example question xyz
correct is
... abc "You chose this answer incorrectly."
... abc "You have chosen the correct answer."
wrong is
... xyz "You chose this answer incorrectly."
explanation
... xyz
How can this be done in LimeSurvey?
(Please note that I have never had to program before, I'm currently getting into javascript and trying to learn the basics).
I am using:
Windows 7 Professional (and Windows 10 Home)
Mozilla Firefox Quantum 64.0.2
LimeSurvey Version 3.15.5+181115
It take time, but no need to know javascript (is more near than Calc Formula)
Quick sample, if in question Q01, the good answer (for a multiple) is SQ1 and SQ3 (and not SQ2 and SQ4)
Code:
... abc {if(Q01_SQ1.NAOK == "Y" and Q01_SQ2.NAOK == "" and Q01_SQ3.NAOK == "Y" and Q01_SQ4.NAOK == ""),"You have chosen the correct answer.","You chose this answer incorrectly.")}
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
... abc {if(Q01_SQ1.NAOK == "Y" and Q01_SQ2.NAOK == "" and Q01_SQ3.NAOK == "Y" and Q01_SQ4.NAOK == "","You have chosen the correct answer.","You chose this answer incorrectly.")}
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.