[RESOLVED]Set number of groups per page programmatically in Crystal Reports
Is it possible to set the number of groups per page programmatically in Crystal Reports?
Thanks
Re: Set number of groups per page programmatically in Crystal Reports
There is no groups per page option but you can force a page break at anytime.
For each Section you can specify a "New Page Before" or "New Page After" formula. If the formula evaluates to True, the next section will start on a new page.
For example, only two groups will print per page if the following code is placed in the Group Footer's "New Page After" formula.
GroupNumber Mod 2 = 0
Re: [RESOLVED]Set number of groups per page programmatically in Crystal Reports
You are the best! :D It worked great. Thanks a lot.