Page 1 of 1

Skip column after certain occurrence

Posted: December 28th, 2015, 2:25 am
by quicnsereko
Hello, I have a roster with about 40 occurrences, there is a column that only applies to the first 5 occurrences. How do I skip that column for all the other occurrences after the fifth.

Another question, if I use occurrence labels can I make the label appear in the radio button box question?

Thanks

Re: Skip column after certain occurrence

Posted: January 4th, 2016, 2:22 pm
by josh
You can skip the column by looking a the value of curocc() which gives you the occurrence number (i.e. row number). Something like:

if curocc() > 5 then
skip...

I'm not sure what you mean by the radio button box question. You can get the occurrence label using the function getocclabel() (see the online help for details).