How do I get a report footer to begin printing on the first page?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a subreport in the report footer and would like for it to begin
printing immediately after the details section. It is currently starting at
the top of a new page. I would like it to start on the first page and roll
to the next page. Any ideas? Thanks.
 
Add a calculated field to the query behind the report. Try this...
GroupValue1 : 1
Now, create a GroupFooter based on the GroupValue1 field, and place your subreport in
there. It will print only after all records in the Detail with a 1 value (all of them
actually) have printed.
 
Back
Top