6 Oct
2006
6 Oct
'06
6:02 a.m.
You can to put IF statements in the .chk file to do this, but they will have to go in each variable where there is a break in the chain: var1 if code = 0 then goto var 5 endif end var 5 if code = 0 then goto var8 endif end
Or you can hide certain variables (probably the better way) var 1 if code = 0 then hide var2 hide var3 hide var6 etc endif end
Jamie
Benjamin Wecker wrote:
Hi,
I've a problem with the JUMP command. I have 3 different questionaries in size and need that epidata jumps from a identifcation variable to the next variables. The problem is that I need multiple jumps.
Something like that:
If code=0 then go to questions 1, 5, 8, 9 If code=1 then go to questions 1,2, 3,4, 5, 6, 7, 8, 9, 10 and so on..