Printing Double Sided

K

Kelvin

I am trying to print a report double sided. My problem is that my report is
divided by customers. Some customers have more info then others so they
take up more pages when printing. Some of the info for a customer comes out
to an odd number of pages. I want to be able to add an extra page (blank or
something with the wording "Page intentionally left blank") for these
sections of the report hat have an odd number of pages so that eveything
prints correectly double sided. Is this even possible? I've figured out
how to count the pages to tell if it is odd, but I can't find any commands
to add a blank page. Thanks in advance.

Kelvin
 
A

Alphonse Giambrone

Place a page break control at the end of the group footer section.
In the format event of the group footer

If Me.Page Mod 2 <> 0 Then
Me!YourPageBreak.Visible = True
Else
Me!YourPageBreak.Visible = False
End If

Make sure the height of the group footer is not zero.
 
K

Kelvin

I didn't even think about uisng the page break control. I had been playing
with the add page break option in the headers and footers. Thanks.
 

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