2 Page report

T

TheARC

I'm having trouble with a 2 page report. The first page is printing fine, it
has fields that are of fixed length. After the first page I force a page
break. On the 2nd page I have a series of Memo fields that I have set to can
grow and can shrink. I want to have a signature line that prints on the
bottom of the 2nd page. Any suggestions?
 
G

Gary Walter

TheARC said:
I'm having trouble with a 2 page report. The first page is printing fine,
it
has fields that are of fixed length. After the first page I force a page
break. On the 2nd page I have a series of Memo fields that I have set to
can
grow and can shrink. I want to have a signature line that prints on the
bottom of the 2nd page. Any suggestions?

One suggestion:

Add textbox to PageFooter w/source

=IIF([Page]=2,"My signature line:,"")

good luck,

gary
 
G

Gary Walter

sorry about typo, should be
=IIF([Page]=2,"My signature line","")


Gary Walter said:
TheARC said:
I'm having trouble with a 2 page report. The first page is printing fine,
it
has fields that are of fixed length. After the first page I force a page
break. On the 2nd page I have a series of Memo fields that I have set to
can
grow and can shrink. I want to have a signature line that prints on the
bottom of the 2nd page. Any suggestions?

One suggestion:

Add textbox to PageFooter w/source

=IIF([Page]=2,"My signature line:,"")

good luck,

gary
 
Top