Reputation: 1
I am working with Crystal Reports XI and have a pretty basic report. It is formatted like this: Report Header Page Header Group Header #1 Details Group Footer #1 Report Footer Page Footer
My issue is that the Details area is pulling records from a database and depending there can be enough records associated with the Group Header #1 that the report will span multiple pages. This appears to work except that the report after (this is a mass mailer type of a report for individuals) does not start on a new page, causing print issues.
The Report Footer and Page Footer both have New Page After turned on (they are grayed out and I cannot alter them. The Details (in the Section Expert) has Free-Form Placement and Keep Together turned on only.
Thoughts?
Upvotes: 0
Views: 4306
Reputation: 3188
Try to turn on the group header new page before with a formula to skip the first group.
Write the formula
groupnumber > 1
This will put each group in a separate page. The formula is important to avoid a blank initial page.
Upvotes: 1