Print Multiple Subreport Copies

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello,

I have a subreport on a main report consisting of a static form.

I would like to print x number of copies of this subreport, x being a
quantity defined by the count of a control on the main report.

Any way to do a PRINT PREVIEW of the main report, and have the subreport
consist of x number of copies?
 
David said:
I have a subreport on a main report consisting of a static form.

I would like to print x number of copies of this subreport, x being a
quantity defined by the count of a control on the main report.

Any way to do a PRINT PREVIEW of the main report, and have the subreport
consist of x number of copies?


A lot more details are needed here before I can say anything
specific.

At this point, I think it would be useful for you to create
a utility table (named Numbers) with one field (named Num)
and populated with values 1,2,3,... up to more than the
highest x you will ever have.

Then you can include this table in your main report's record
source (with a criteria of Num <= x. The main report should
then have a detail section (with your subreport) for each
number up to x
 
Back
Top