Page 1 of 1

Skip to next Roster

Posted: February 10th, 2017, 6:29 am
by yanina
Hi Master

Need your help please regarding skip to roster.

I have variable like this:
=================================
P1: Non Roster
P2: Non Roster
P3: Non Roster
P4: Non Roster

and:
Q1: Roster with 10 Substric
Q2: Roster with 10 Substric
Q4: Roster with 10 Substric
Q5: Roster with 10 Substric

I have no problem on P1 till P4. I just set the logic like this:

Code: Select all

Proc P1
if $ = NotAppl then skip to next;endif; //this will skip to next field
Proc P2
if $ = NotAppl then skip to next;endif; //this will skip to next field
Proc P3
if $ = NotAppl then skip to next;endif; //this will skip to next field
Proc P4
if $ = NotAppl then skip to next;endif; //this will skip to next field
My question for Roster Field: Q1 - Q5:
How to set the logic to skip for next rooster, without mention the field/roster name ?
If i set : nex to, it only jump to the next subsscrip in current roster, not on the next roster.

Thank you master for your help.

Yanin

Re: Skip to next Roster

Posted: February 10th, 2017, 7:13 am
by josh
Skip to next is meant for use inside a roster to skip to the next row. For other cases you need to use the name of the field/form or roster you want to skip to. So in your case you want to use skip to Q1, skip to Q2...