Print Multiple Subreport Copies

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?
 
M

Marshall Barton

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top