page break

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,
How do I cancel the last page break on a report to stop printing a blank
final page?

T.I.A
Dave
 
Hi all,
How do I cancel the last page break on a report to stop printing a blank
final page?

T.I.A
Dave

Is this a page break caused by a page break control?
Code the Format event of the section the control is placed in:

Me.PageBreakName.Visible = Not [Page] = [Pages]

You also need to add (if you don't already have one) a control to
calculate [Pages], i.e. ="Page " & [Page] & " of " & [Pages], or
simply = [Pages].
 
Back
Top