VBA module - Send Snapshot

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Here is a line of code that will print a report to a Snapshot file via VBA code:
Code:
DoCmd.OutputTo acReport, "ReportName", "SnapshotFormat(*.snp)", "FilePathAndName", False, ""
substitute the correct values for "ReportName" and "FilePathAndName" (this is the destination of the saved output).
 
Upvote 0
Could i mix that with this code?

DoCmd.GoToRecord , , acNewRec
DoCmd.Close
DoCmd.SetWarnings (WaringsOff)
Dim olApp As Object, olMail As Object
Set olApp = CreateObject("Outlook.Application")
Set olMail = olApp.CreateItem(olMailItem)
With olMail
.to = "MarketingRequest@dmi-stl.com"
.Subject = "A Marketing Print Requst Has Been Made"
.Body = "A print project request has been submitted company time number : " + CTN + " and number : " + PNum
.DeleteAfterSubmit = True
.Send
End With
Set olMail = Nothing
Set olApp = Nothing
DoCmd.SetWarnings (WarningsOn)
 
Upvote 0

Forum statistics

Threads
1,221,826
Messages
6,162,192
Members
451,752
Latest member
majbizzaki

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