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