Hi,
I have a situation where the I have 4 options that can either be true or false.
I want to use multiple choice for the 4 answers, and add a value to "non" selected boxes in those cases where the option is false.
I tried to do that using this EM statement in the Relevance Equation of the main question.
FYI, Answers 2 and 4 are true.
{sum(if(G5Q00001_SQ001 == "Y", -1, 1), if(G5Q00001_SQ002 == "Y", 1, -1), if(G5Q00001_SQ003 == "Y", -1, 1), if(G5Q00001_SQ004 == "Y", 1, -1))}
I have tried with this as well:
{sum(if(G5Q00001_SQ001 == "1", -1, 1), if(G5Q00001_SQ002 == "1", 1, -1), if(G5Q00001_SQ003 == "1", -1, 1), if(G5Q00001_SQ004 == "1", 1, -1))}
I wanted to use this method so I can use nagative values when scoring all questions in the group.
This seemed to me a quite straight forward method, but when I do a Logic Check I see this
I am not quite sure what I do wrong, but it's clear something is not quite right.
Can anyone please shed a light on this?
Many thanks in advance.