Good day!
In the past, I have been tasked with printing multiple reports for each record within the database. In essence, I needed to collate the documents. To accomplish this I would use DAO/ADO and loop a "WHERE" statement to each report I wanted to print. The code would then move to the next record and repeat.
This proved to be a slow process, as it would need to create a new print job for every single record and report.
In the database I currently have, there are about 1,000 records. There are also 4 different reports. I would rather implement a collation option into the print process rather than having to manually collate 4,000 by hand.
Any ideas to make this process go faster? Is there any way you can make a report print without submitting a new job to the printer?
Thanks in advance!
In the past, I have been tasked with printing multiple reports for each record within the database. In essence, I needed to collate the documents. To accomplish this I would use DAO/ADO and loop a "WHERE" statement to each report I wanted to print. The code would then move to the next record and repeat.
This proved to be a slow process, as it would need to create a new print job for every single record and report.
In the database I currently have, there are about 1,000 records. There are also 4 different reports. I would rather implement a collation option into the print process rather than having to manually collate 4,000 by hand.
Any ideas to make this process go faster? Is there any way you can make a report print without submitting a new job to the printer?
Thanks in advance!