
Solved
Trying to get numerical choices from a question and to do math calculations
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.

Best answer by MohammedAli_Rajapkar
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);
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.