Blank Page due to page break in group header.

R

Rose

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

Marshall Barton

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)
 
Top