Page 1 of 1

Move from roster back to the main record

Posted: June 19th, 2015, 8:33 pm
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

Re: Move from roster back to the main record

Posted: June 22nd, 2015, 6:48 am
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.