I need a page break after each 3 pages

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
T

Terry Olsen

Here's the sitch...

I've got multi-forms (3 to a page, perforated), tractor feed, 11 x 14,
Lexmark Forms printer, Generic/Text Only driver, 0" margins.

I've created a report that will print on the forms, set up into 3 columns.
So it prints 3 records per page. I've got it set up so that it prints
exactly where it needs to on the first page. However, the data on the
succeeding pages prints too high, crawling higher each page. So I need to
send a page break after every 3 records.

Anybody got any ideas?

Thanks!
 
You can place a page break after each record and then make it visible only
after each third record. This would take a text box in the detail section:
Name: txtCount
Control Source: =1
Running Sum: Over All
Then in the On Format event of the detail section
Me.PgBrkCtrl.Visible = Me.txtCount mod 3 = 0
 
Back
Top