Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

printing 2 records per page 2

Status
Not open for further replies.

ronphx

Programmer
Jun 24, 2004
64
0
0
US
I am trying to format a report to print two W2 forms per page on the preprinted W2 forms. The top of each W2 is at 3/4" and 6 1/4" on each page, and each W2 form is half a page. How do I go to a new page after every other record (two records per page)?
 
Thanks to both of you. That is exactly what I needed. My problem was that the W2 forms have narrow top and bottom margins. I calculated the necessary space, then used the following code:

If Me.cnum Mod 2 = 0 Then
Me.GroupFooter0.Visible = False
Else
Me.GroupFooter0.Visible = True
End If

This prevented the second form on each page from spilling over onto the next form, and still kept all the detail together.

Thanks again.
 
ronphx

We're having a similar problem or maybe the same problem, however the code in your resolution is used with one of the methods defined hymn or ZmrAbdulla? Thank you in advance

mofla
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top