Article ID: 120907 - Last Review: January 19, 2007 - Revision: 2.1 ACC: How to Repeat Subreport Header at Top of PageThis article was previously published under Q120907
Moderate: Requires basic macro, coding, and interoperability skills.
On This PageSUMMARY
This article describes how to repeat a subreport's header when the
subreport spans multiple pages.
NOTE: This method works best for one subreport. Attempting to repeat the subreport header for multiple subreports requires a set of controls in the page header and a flag for each subreport. Then the code must check each flag and hide or show the appropriate sets of controls. This code is not easy to maintain. NOTE: This article explains a technique demonstrated in the sample files, RptSampl.exe (for Microsoft Access for Windows 95 version 7.0) and RptSmp97.exe (for Microsoft Access 97). For information about how to obtain these sample files, please see the following articles in the Microsoft Knowledge Base: 145777 (http://support.microsoft.com/kb/145777/EN-US/ ) ACC95: Microsoft Access Sample Reports Available in Download Center 175072 (http://support.microsoft.com/kb/175072/EN-US/ ) ACC97: Microsoft Access 97 Sample Reports Available in Download Center MORE INFORMATION
The method demonstrated in the following example uses a flag in the page
header to indicate whether the subreport spans multiple pages. When the
subreport's report header is printed the flag is set to 1. When the
subreport's report footer is printed, the flag is set to 0. When the page
header is printed, if the flag is set to 1, then the subreport spans
multiple pages and the subreport's header should be repeated.
The following example demonstrates how to cause a subreport's header to be repeated if the subreport spans multiple pages:
Displaying Main Report Information on Every PageThe example above assumes that you do not want anything except the subreport header to be printed in the main report's page header. If you do want to print other information, you will need to hide and unhide each subreport header control in the page header. Change the MainPH macro in step 2 above to:
Macro Name Condition Action
-------------------------------------------------
MainPH [Flag]=0 SetValue
Item: [Text1].visible
Expression: False
... SetValue
Item: [Text2].visible
Expression: False
... SetValue
Item: [Text3].visible
Expression: False
[Flag]=1 SetValue
Item: [Text1].visible
Expression: True
... SetValue
Item: [Text2].visible
Expression: True
... SetValue
Item: [Text3].visible
Expression: True
REFERENCES
For more information about events during printing, type "Print Events" in
the Office Assistant, click Search, and then click to view "Print Event."
For more information about report OnFormat and OnPrint properties, search on "OnFormat," and "OnPrint," using the Microsoft Access 97 Help Index. APPLIES TO
| Article Translations
|


Back to the top
