Skip to next Roster

Discussions about CSEntry
Post Reply
yanina
Posts: 60
Joined: October 31st, 2016, 9:37 am

Skip to next Roster

Post 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
josh
Posts: 2399
Joined: May 5th, 2014, 12:49 pm
Location: Washington DC

Re: Skip to next Roster

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