Page Header to show on 3rd page of reprt

N

Natalie

I have created a report that has a sub report in a header of the main report.
I would like the page header to show only at the end of the sub report
records. I have set the page header property of the main report to "Not with
Rpt Hdr". With this the page header starts on second page. How can I get
the page header to start on 3rd or 4th page? Any suggestions on if this can
be done, or how to get it done?

Thanks in advance for your help.

Nats
 
F

fredg

I have created a report that has a sub report in a header of the main report.
I would like the page header to show only at the end of the sub report
records. I have set the page header property of the main report to "Not with
Rpt Hdr". With this the page header starts on second page. How can I get
the page header to start on 3rd or 4th page? Any suggestions on if this can
be done, or how to get it done?

Thanks in advance for your help.

Nats

Code the Page Header Format event:
Cancel = Me.Page < 3
 
Top