code help

Other discussions about CSPro
Forum rules
New release: CSPro 8.0
Post Reply
seloh
Posts: 1
Joined: February 5th, 2018, 5:09 am

code help

Post 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;
aaronw
Posts: 561
Joined: June 9th, 2016, 9:38 am
Location: Washington, DC

Re: code help

Post 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;
Post Reply