Blank Page due to page break in group header.

  • Thread starter Thread starter Rose
  • Start date Start date
R

Rose

When using a page break in the group header is there any way to avoid getting
a blank first page.
 
Rose said:
When using a page break in the group header is there any way to avoid getting
a blank first page.


Setting the group header section's ForceNewPage property
Before Section will avoid that problem.

If you must use a page break control, then make it invisible
on the first page:
Me.pgBreak.Visible = (Me.Page > 1)
 
Back
Top