I need a macro to export 14 reports in PDF format to a location on C drive or network drive. Maybe prompted for location.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
macro to export reports
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » macro to export reports
- This topic has 13 replies, 3 voices, and was last updated 11 years, 10 months ago.
Viewing 7 reply threadsAuthorReplies-
RetiredGeek
AskWoody_MVPJune 1, 2013 at 1:53 pm #1394950Linda,
Could you please specify your version of Access as this makes a difference. :cheers:
-
WSLindaR
AskWoody Lounger
-
-
RetiredGeek
AskWoody_MVPJune 1, 2013 at 4:06 pm #1394966Linda,
I did this in 2010 but should also work in 2007.
Code:Sub ExportReportsPDF() Dim zDestFolder As String Dim zReportName(1 To 2) As String Dim iCntr As Integer zReportName(1) = "rptBookInventoryInsert" zReportName(2) = "rptInventoryReport" zDestFolder = "G:BEKDocsAccess" For iCntr = 1 To UBound(zReportName) DoCmd.OutputTo acOutputReport, zReportName(iCntr), acFormatPDF, _ zDestFolder & zReportName(iCntr) & ".pdf" Next iCntr End Sub
Of course you’ll have to change the array size and initialize each element of the array with the desired report name. You’ll also have to change the zDestFolder path and make sure you keep the trailing . HTH :cheers:
-
WSLindaR
AskWoody Lounger
-
-
RetiredGeek
AskWoody_MVPJune 1, 2013 at 5:57 pm #1394975Linda,
Yes you can just copy the code w/o the Sub/End Sub lines or include the code in a module {changing the 1st line to Public Sub …} and then call it from the click event, this is what I would recommend as you can then call it from elsewhere if needed. HTH :cheers:
-
WSLindaR
AskWoody Lounger
-
-
RetiredGeek
AskWoody_MVPJune 1, 2013 at 8:15 pm #1394979Linda
Just put the procedure name in the event procedure.
Code:Private Sub ButtonName_Click() ExportReportsPDF End Sub
HTH :cheers:
-
WSLindaR
AskWoody Lounger -
WSLindaR
AskWoody LoungerJune 3, 2013 at 11:48 am #1395155I am getting an error 2501 The outputTo action was cancelled.
Here is my module that I created. I created a form with a command button that calls the module.
Public Sub ExportReportsPDF()
Dim zDestFolder As String
Dim zReportName(1 To 13) As String
Dim iCntr As IntegerzReportName(1) = “01_Total All Members ReportAll”
zReportName(2) = “01_Total All Members ReportExcludesPre65”
zReportName(3) = “01_Total All Members ReportExcludesPre65-NONOPEB”
zReportName(4) = “01_Total All Members ReportExcludesPre65-OPEB”
zReportName(5) = “01_Total All Members ReportNON-OPEB”
zReportName(6) = “01_Total All Members ReportOPEB”
zReportName(7) = “01_Total All Members ReportPre65”
zReportName(8) = “01_Total All Members ReportPre65andNONOPB”
zReportName(9) = “01_Total All Members ReportPre65andOPEB”
zReportName(10) = “03RPt_CntbyProduct_BlueCare2”
zReportName(11) = “03RPt_CntbyProduct_CompPPO2”
zReportName(12) = “03RPt_FirstStBasicandCDHGold”
zReportName(13) = “03RPt_Medicfill and POS”zDestFolder = ” V:CORPDATA17AdminLindaDelawareReportPDFFolder”
For iCntr = 1 To UBound(zReportName)
DoCmd.OutputTo acOutputReport, zReportName(iCntr), acFormatPDF, _
zDestFolder & zReportName(iCntr) & “.pdf”Next iCntr
End Sub
I named the module ExportPDF
-
-
RetiredGeek
AskWoody_MVPJune 3, 2013 at 12:06 pm #1395158Linda,
On which report does it throw the error?
It could be the reports with the spaces in the names.
Try changing the For statement to start at 10 if that works it is the spaces in the report names.:cheers:
-
RetiredGeek
AskWoody_MVPJune 3, 2013 at 1:17 pm #1395169Linda,
Here’s a revised version of my original code with some error trapping included. This should let reports w/o problems be saved while flagging those with errors so you can track down some of the problems. HTH :cheers:
Code:Sub ExportReportsPDF() Dim zDestFolder As String Dim zReportName(1 To 2) As String Dim iCntr As Integer zReportName(1) = "rptBookInventory Insert" zReportName(2) = "rptInventoryReport" zDestFolder = "G:BEKDocsAccess" On Error GoTo PDFErrorTrap 'Set Error Trap For iCntr = 1 To UBound(zReportName) DoCmd.OutputTo acOutputReport, zReportName(iCntr), acFormatPDF, _ zDestFolder & zReportName(iCntr) & ".pdf" Next iCntr GoTo ExitTag 'Branch around error trap PDFErrorTrap: 'Error Trap Code Select Case Err.Number Case 2501 MsgBox "Report: " & zReportName(iCntr) & " caused an error.", _ vbOKOnly + vbCritical, "Report Error:" Resume Next Case 2059 MsgBox "Access could not find the report:" & vbCrLf & _ zReportName(iCntr), vbOKOnly + vbCritical, _ "Repport Not Found Error:" Resume Next Case Else MsgBox "Error " & Err.Number & ", " & Err.Description & vbCrLf & vbCrLf & _ "Procedure: ExportReportsPDF " & vbCrLf & _ "Report : " & zReportName(iCntr) End Select ExitTag: On Error GoTo 0 'Cancel Error Trap End Sub
-
WSpatt
AskWoody Lounger -
WSpatt
AskWoody Lounger
Viewing 7 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Flash Drive Eject Error for Still In Use
by
J9438
5 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
16 hours, 9 minutes ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
16 hours, 10 minutes ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
8 hours, 54 minutes ago -
Migrate off MS365 to Apple Products
by
dmt_3904
21 minutes ago -
Login screen icon
by
CWBillow
7 hours, 35 minutes ago -
AI coming to everything
by
Susan Bradley
16 hours, 20 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
1 day, 7 hours ago -
No Screen TurnOff???
by
CWBillow
1 day, 8 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
1 day, 8 hours ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
1 day, 20 hours ago -
How well does your browser block trackers?
by
n0ads
1 day, 6 hours ago -
You can’t handle me
by
Susan Bradley
6 hours, 36 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
23 hours, 15 minutes ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
2 days, 7 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
1 day, 11 hours ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
2 days, 8 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
2 days, 8 hours ago -
Lumma malware takedown
by
EyesOnWindows
1 day, 20 hours ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
2 days, 17 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
2 days, 16 hours ago -
Meet Gemini in Chrome
by
Alex5723
2 days, 20 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
2 days, 21 hours ago -
Trump signs Take It Down Act
by
Alex5723
3 days, 5 hours ago -
Do you have a maintenance window?
by
Susan Bradley
1 day, 9 hours ago -
Freshly discovered bug in OpenPGP.js undermines whole point of encrypted comms
by
Nibbled To Death By Ducks
2 days, 7 hours ago -
Cox Communications and Charter Communications to merge
by
not so anon
3 days, 8 hours ago -
Help with WD usb driver on Windows 11
by
Tex265
19 hours, 36 minutes ago -
hibernate activation
by
e_belmont
3 days, 17 hours ago -
Red Hat Enterprise Linux 10 with AI assistant
by
Alex5723
3 days, 21 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.