Force page breaks in a report

Momma

Member
Local time
Tomorrow, 00:23
Joined
Jan 22, 2022
Messages
132
I have a report which runs over three pages for each record. I have different sections of data from different tables in the report. Each of these sections is a different sub report. In order to force each section on a new page I've selected Force New Page before Section in the Report Header of the sub report. I'm not sure if this is the correct way to force a page break in a report like this because it's ignoring the page break.
Any help would be highly appreciated.
 
Pagination is controlled by the main report.

If each section is a subreport and you want each subreport to start on new page, put a Page Break control between each subreport.
 
You MIGHT try to include a string containing the VBA character-name constant vbFormFeed - though it is possible that the report would intercept it. Put the form feed at the top of the report page.

Some notes I've found suggest that it wouldn't work, but it is easy enough to try for your case.
 
Pagination is controlled by the main report.

If each section is a subreport and you want each subreport to start on new page, put a Page Break control between each subreport.
Thank you Kindly, June!
 
You MIGHT try to include a string containing the VBA character-name constant vbFormFeed - though it is possible that the report would intercept it. Put the form feed at the top of the report page.

Some notes I've found suggest that it wouldn't work, but it is easy enough to try for your case.
Not sure what you mean, Doc, but I got it working!
 

Users who are viewing this thread

Back
Top Bottom