Hi All
I want a click button that will start a mail merge in Access, so far I've tinkered around with some code over the past week and when running the below code which just opens the Word doc but does nothing else.
Any help would be lovely
I want a click button that will start a mail merge in Access, so far I've tinkered around with some code over the past week and when running the below code which just opens the Word doc but does nothing else.
Any help would be lovely

:banghead::banghead::banghead:Dim MailMergeFile As String
Dim objWord As Word.Document
Dim i As Integer
Set objWord = GetObject("C:\Users\CustomerDB\Desktop\mymerge.docx", "Word.Document")
objWord.Application.Visible = True
objWord.MailMerge.OpenDataSource _
Name:="C:\Users\User\Desktop\CustomerDB.accdb", _
LinkToSource:=True, _
Connection:="TABLE TblCustomerDetails", _
SQLStatement:="SELECT * FROM [TblCustomerDetails]"
objWord.MailMerge.Execute
For i = 1 To objWord.Application.Documents.Count - 1
objWord.Application.Documents(i).Close wdSaveNo
Next i
Last edited: