Hi, stermate1988,
you get three answers because you have three conditions.
Remember how the "IF" works:
IF (some_condition, result if true, result if false).
So you have to merge your IF statements:
IF(G1_Q0013.NAOK=='A3', 'Correct', if(G1_Q0013.NAOK=='A4', 'Correct',if(G1_Q0013.NAOK=='A5','Correct','Incorrect'))).
But as I understand your statement:
If one the answers is 'A3' or 'A4' or 'A5' the result is 'Correct' otherwise 'Incorrect'.
So IMHO it's better just to say:
if(G1_Q0013.NAOK=='A3' or G1_Q0013.NAOK=='A4' or G1_Q0013.NAOK=='A4','Correct','Incorrect')
Best regards
Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
The topic has been locked.