Macro VBA Email Access report as PDF

haffy311

Board Regular
Joined
Jan 20, 2011
Messages
84
Hello,

Can anyone recommend a previous post/thread to help me get started creating the code for the following scenario:

-Email a specific 'report' from an Access Database to multiple users as a PDF file


Thanks,
Haffy311
 
Hello,

Can anyone recommend a previous post/thread to help me get started creating the code for the following scenario:

-Email a specific 'report' from an Access Database to multiple users as a PDF file


Thanks,
Haffy311

Take a look at this link for a discussion on sending Automated e-mail Alerts.

You can use the DoCmd.SendObject method as shown below to convert your Report into PDF format and send as attachment to e-mail message:

Code:
DoCmd.SendObject acSendReport,"myreport","PDFFormat(*.pdf)","To e-mail addresses","cc",,"Subject Text","Message Text",false
 
Upvote 0

Forum statistics

Threads
1,226,852
Messages
6,193,363
Members
453,792
Latest member
Vic001

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top