Joe said:
Hi,
Let me clarify my problem
I have3 reports that I combined to one as a sub report.
Every report has a different Report Header.
How can I have different report headings for each report?
Thanks
Joe
In each report that you want to use as a subreport you go into design view
and you add a top-level grouping based on a constant value like =1. You
set this to have a GroupHeader, but not a GroupFooter. The GroupHeader
needs to have the RepeatSection property set to True. Then you move all
objects currently in the Page Header into this new GroupHeader and delete
the PageHeader entirely.
Since the constant expression =1 never changes you end up with a group
section that iterates once for the entire report. The RepeatSection = True
will cause the section to repeat on subsequent pages. This GroupHeader
will in effect, act just like a PageHeader except that it will still appear
when the report is used as a subreport.