How to specify quantity of labels to print using form data?

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

Guest

I have a form that collects a string and a number, I want to print a page of
avery labels , the exact qty as collected in my form. How can I teel the
report to do that?
 
You can create a table of numbers (tblNums) with a single, numeric field
(Num) and add values from 1 to your maximum qty.
Add this table to your report's record source and don't join it to any other
table.
Add the Num field to the grid and set the criteria to
<=Forms!frmYourForm!txtYourQty
 
Back
Top