Page Break cause Blank pages

L

Lamar

I have a report that has multiple Groupheader sections that include page
breaks after each one of them. I have two sections (FaxHeader and
CertHeader) where the page break causes a blank page after each section. The
ForceNewPage is set None. It is not the margins (I have tested). I do have
coding that makes these sections visible property be true or false based on
record showing in the form (see below). It is not the code because when I
take it out; the problem is still the same.

It has to be the page breaks. When the section is visible then there is an
blank page. When I take out the page breaks (no blank pages but of course
the pages overlap which I can not have). Any idea why this happening? I
just want the page breaks to separate the pages not cause a blank page. My
other page breaks in the other sections cause not blank pages.

Thanks for any help. Lamar



intCert = Nz([Forms]![FaxEmployment2]![cmbCert], 0)

Select Case intCert
Case Is >= 1
Me.CertHeader.Visible = True
intPage = 1
Case Else
Me.CertHeader.Visible = False
End Select
 
M

Marshall Barton

Lamar said:
I have a report that has multiple Groupheader sections that include page
breaks after each one of them. I have two sections (FaxHeader and
CertHeader) where the page break causes a blank page after each section. The
ForceNewPage is set None. It is not the margins (I have tested). I do have
coding that makes these sections visible property be true or false based on
record showing in the form (see below). It is not the code because when I
take it out; the problem is still the same.

It has to be the page breaks. When the section is visible then there is an
blank page. When I take out the page breaks (no blank pages but of course
the pages overlap which I can not have). Any idea why this happening? I
just want the page breaks to separate the pages not cause a blank page. My
other page breaks in the other sections cause not blank pages.


I don't see anything in your description that would cause a
blank page. Double check that you don't have two PageBreak
controls where you think there is only one.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top