I assumed you have a table/query with one of the fields being
[NumOfCopiesField]. If the value of this field is 3, you would like to
print
3 copies of that record. If the value is 1, you only want to print 1 copy
of
the record.
I'm not sure why you introduced "pages" to this thread unless you print
one
record per page in which case the above should be true.
--
Duane Hookom
MS Access MVP
--
Bill James said:
I think you mis understood whta I need
I would like to send to the print that number of pages based on the
number
in the number of copies field. I do not need to show the number of
copies
on
the report.
:
Did you create a table as suggested and add it to the Record Source of
your
report? Did you do the other steps? If so, what was the result? If
not,
where did you not understand the steps?
--
Duane Hookom
MS Access MVP
--
I am a little confused about the instructions
I have an existing report
I want to print x number of pages for each record
Each Record already has the number of pages I need to in a field
within
the
table
What is the reason for the new table?
I have tried to ad this as a parameter to the report in the
Properties
field!
:
Create a table of numbers with a single numeric field and values
1 -
your
maximum number of copies.
tblNums
Num
1
2
3
4
5
...
max
Add this table to your report's record source and don't join it
with
any
other table. Add the Num field to the grid and set the criteria
under
it
to:
<=[NumOfCopiesField]
--
Duane Hookom
MS Access MVP
--
message
I have several records and each record needs a different number of
copies
printed. I have the number of copies in a field and would like to
snd
that
to
the number of copies to print for each record.