Diffrent page headers in report

dealwi8me

Registered User.
Local time
Today, 23:10
Joined
Jan 5, 2005
Messages
187
Hello all,

Is it possible to have one page header at the first page and a diffrent one at the rest of the pages?

Thank you in advance.
 
Yes. If you put something like this in the page On Format event:

Code:
IF me.page=1 THEN
     me.mypageheadertextbox="text for page 1"
ELSE
     me.mypageheadertextbox="text for page 2 onwards"
ENDIF

hth
Chris
 
Alternatively, you can set it so that the Report header and the Page header don't appear on the same page, so that the first page shows only the Report header and not the Page header, and the other pages show just the Page header as normal.

To set this, get the Properties up for the entire report, and on the Format tab find "Page Header". Set the value for this to "Not With Rpt Hdr". Now your Report header is your first page header and the Page header is the header for the remaining pages. The two are totally independently customisable.
 
I have done this myself and it works really well except that I have a blank last page which just has the page header....any ideas how I can stop this happening?
 

Users who are viewing this thread

Back
Top Bottom