access2010
Registered User.
- Local time
- Today, 09:07
- Joined
- Dec 26, 2009
- Messages
- 1,115
Hi NicoleCould I please get a code suggestion to preview a report and then print 4 copies using the Macro = Control + E.
Your suggestions are appreciated.
Nicole
Please open the database and use Ctrl + E to open up the report, that we would use or look at the report => Print_4_Pages.Thank you GP George for your question.
The currently Macro previews the document and then 2 copies are printed, while we would like the Macro to preview the document and than print 4 copies..
Nicole
Hi NicolePlease open the database and use Ctrl + E to open up the report, that we would use or look at the report => Print_4_Pages.
The actual detailed report will be used for data entry after printing and we prefer not to use a Wor
Please open the database and use Ctrl + E to open up the report, that we would use or look at the report => Print_4_Pages.
The actual detailed report is used for data entry after printing and we prefer not to use a Word Document.
Thank you.
Nicole
SELECT TOP 4 dummyT.* FROM dummyT;
Thank you for sending us your database, but we cannot open it because of the "Unrecognized Database Format" message. Could you please send us another database. Thank you very muchyou need to add a RecordSource to the Report.
Create a dummy table (dummyT on the demo), then add as many records you want.
Adjust the Height of the report to conform to the size of the paper you want to print.
You only need 4 pages, so to do that, add a Query to the Report's Recordsource:
Code:SELECT TOP 4 dummyT.* FROM dummyT;
now if there are extra pages being print, adjust the height of the detail section (make it shorter).