VBA macro to save and email multiple PDF invoices in Excel (via Outlook)

rob789

New Member
Joined
Aug 18, 2022
Messages
2
Office Version
  1. 365
The Macro below is currently set up to create individual invoices and save as PDF's based on a database sheet with invoice data on each row and then an invoice template on another sheet. The macro loops through each row in the database and changes a number on the template with each iteration which in turn changes the result of a Vlookup and therefore the invoice data.



I would like it so that for each invoice not only is it saved but each invoice file is also then emailed to an email address via Outlook that will appear on the invoice template and will change with each iteration as it will also be linked to a vlookup.



Sub SaveInvoices()
Dim i As Integer

For i = 2 To Sheets("InvoiceTemplate").Range("D1").Value
Sheets("InvoiceTemplate").Cells(1, 3) = Sheets("FinalMonthlyInvoices").Cells(i, 2)

Sheets("InvoiceTemplate").Range("A2:K66").ExportAsFixedFormat Type:=xlTypePDF, _
Filename:="C:\VSINV\invoice" & Sheets("FinalMonthlyInvoices").Cells(i, 2) & ".pdf", quality:=xlQualityStandard, _
includedocproperties:=True, ignoreprintareas:=True, openafterpublish:=False
Next i
MsgBox "Done"
End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
I should clarify, each invoice file will be attached to a separate email. For example if 10 invoices are saved then 10 emails with to 10 different email address will be sent.
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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