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

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

Back
Top