Two sided letter (report) question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I have a database that prints letters to customers, however we would like
to be able to use duplex printing to print the same letter on the back in
Spanish for our Spanish speaking customers. My question is in regards to the
header and footer of the letter, how do i get the header and footer to change
for the 2nd (back) page?

hope that made sense.

Thanks
 
What I have done before is replace the label in the header with an unbound
text box. I the textbox you can place an IIF statement like:
=IIF(page/2 = Int(page/2),"English Header","Spanish Header")
Hope this helps.
Fons
 
Back
Top