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.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.