After help from Shahi I got to the following code:
!
This code concatenates the numerical answers, i.e. the choice may be "A lot", "Some" and "None" and I get '1', '2' or '3', depending on the choice of the user.
However, if they choose the first (1) and third (3) option for the first two questions, the sum is not 4, but 13. Could you help?
If this goes beyond community support, I would be happy to pay for somebody to help me.
Page 1 / 1
Can you try like below for first 2 variables...
var pf1 = parseInt("${q://QID13/SelectedAnswerRecode/1}",10);
var pf2 = parseInt("${q://QID13/SelectedAnswerRecode/2}",10);
var x = (pf1+pf2);
var pf1 = parseInt("${q://QID13/SelectedAnswerRecode/1}",10);
var pf2 = parseInt("${q://QID13/SelectedAnswerRecode/2}",10);
var x = (pf1+pf2);
It can happen when you have done any recoding in your question.
Can you double check if there is any recoding present for this question
Can you double check if there is any recoding present for this question
Thank you both. Mohammedali's fix worked.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.