Skip column after certain occurrence

Discussions about CSEntry
Post Reply
quicnsereko
Posts: 9
Joined: February 24th, 2015, 12:51 am

Skip column after certain occurrence

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

Re: Skip column after certain occurrence

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