Page 1 of 1

code help

Posted: February 5th, 2018, 5:25 am
by seloh
hi, I'M A NEW USER, CAN YOU SEE MY CODE?please
IF Q34=1 THEN
SKIP TO Q35;
IF Q34=2 THEN
SKIP TO Q37;

IF Q34=3 THEN
skip to Q36;

endif;
endif;
ENDIF;

Re: code help

Posted: February 5th, 2018, 3:55 pm
by aaronw
The help documents are a great resource for these types of questions. Here's a link to the if statement:
http://www.csprousers.org/help/CSPro/if_statement.html
IF Q34=1 THEN
    SKIP TO Q35;
ELSEIF Q34=2 THEN
    SKIP TO Q37;
ELSEIF Q34=3 THEN
    skip to Q36;
ENDIF;