BurghMan
25th July 2002, 13:49
I am looking for a way to print a report layout on every other page of a report.

We are using a duplexing printer. I have a request to print a routing sheet (which can be a multi-page report) on the front of each page and a grid on the back of each page that prints out.

Thanks in advance,

BurghMan

Han Brinkman
25th July 2002, 15:37
Can you please be a bit more specific on what's your problem? By means of lattr.pageno you can determine on which page you are and shouldn't it be hard to realize this.

Han

steveauckly
25th July 2002, 18:12
You can use lattr.pageno:

if (lattr.pageno / 2) = (lattr.pageno / 2.0) then
lattr.print = TRUE
else
lattr.print = FALSE
endif

This example would print on even pages. To print on odd pages, just change the TRUE/FALSE.