Move from roster back to the main record

Discussions about CSEntry
Post Reply
tweg
Posts: 29
Joined: June 16th, 2015, 2:41 am

Move from roster back to the main record

Post by tweg »

I have a roster in the middle of the questionnaire and in my application it appears at the end. So I have a skip that go the roster form and after entering I end the group and go the main form

proc mainform
move to mainform;
skip to Q219;

But this takes me back to start of the record instead of Q219 which the entry is supposed to continue. Help will be highly appreciated

Regards
josh
Posts: 2399
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Move from roster back to the main record

Post by josh »

The move is executed first which puts you into the mainform. The skip is never executed since control moves to the first field of mainform. Try removing the move and just do the skip directly unless Q219 is before the roster in which use move Q219.
Post Reply