Page header won't display

  • Thread starter Thread starter Blair
  • Start date Start date
B

Blair

I have 4 reports they have headings in the page header. If you display that
report the headings will show and print out, But these 4 reports are in Main
report that has these reports if there is records to report. BUT the page
headers don't display when the reports are displayed in the main report
Any suggestions why or how to fix
Thanks Blair
 
Blair said:
I have 4 reports they have headings in the page header. If you display that
report the headings will show and print out, But these 4 reports are in Main
report that has these reports if there is records to report. BUT the page
headers don't display when the reports are displayed in the main report


Main reports are in charge of paging actions. Subreport's
page actions are ignored.

You can simulate a page header in a subreport by adding a
top level group (View menu - Sorting and Grouping) using a
constant expression such as =1 or ="MyPageHeader" or
whatever you want. Set its RepeatSection property to Yes
and move the controls from the existing page header section
to this group header.

There is no related setting for a subreport's page footer.
 
Thanks it worked but not quite what I wanted to accomplish. From your
suggestion I clued in to just move my labels to the report header instead of
the page header, so it does what I want now
Thanks Blair
 
Back
Top