programming

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

Guest

I have created a purchase order database and i want to be able to print off
certain records ie # 12112 - 12116. How do i get the report to ask me
peramiters for the records that i want printed. I do have a query that the
report works off of if that is required.
Thank-you
 
Set the criteria in your query. One way would be to put the following in
your criteria for the field where the number lives...
12112 and <12116

If you want to prompt the user each time, I think you could also try
something like...

Between [Enter Start Number] and [Enter Stop Number]
 
Back
Top