Mail Merge - Excel and Word - Need Duplicated File Names

Selred

New Member
Joined
Jul 19, 2022
Messages
1
The below is my Macro I am using in Word VBA Macro however it is overwriting multiple lines. I have 1199 lines of in my excel spreadsheet and some are duplicated so instead of the macro writing the code to automatically create a unique file name it is overwriting it each time therefore not achieving my end goal of hitting all 1199 people.

The end goal being sending the mail merge email to each and every participant of the 1199.

What would I need to add to this VBA macro to achieve this goal? I am stumped!


------------------

Sub MailMergeToPdf2()


Dim masterDoc As Document, recordNum As Integer, singleDoc As Document

Set masterDoc = ActiveDocument

For recordNum = 1 To masterDoc.MailMerge.DataSource.RecordCount

masterDoc.MailMerge.DataSource.ActiveRecord = recordNum
masterDoc.MailMerge.Destination = wdSendToNewDocument
masterDoc.MailMerge.DataSource.FirstRecord = recordNum
masterDoc.MailMerge.DataSource.LastRecord = recordNum
masterDoc.MailMerge.Execute False

Set singleDoc = ActiveDocument

singleDoc.SaveAs2 _
FileName:=masterDoc.MailMerge.DataSource.DataFields("DocFolderPath").Value & "\" & _
masterDoc.MailMerge.DataSource.DataFields("DocFileName").Value & ".docx", _
FileFormat:=wdFormatXMLDocument

singleDoc.Close False

Next recordNum

End Sub

----------------------
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,215,220
Messages
6,123,695
Members
449,117
Latest member
Aaagu

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