Combining 2 word documents into 1
I am probally asking the impossible but worth a shot.
I am currently mail merging from access (using VB code) data to 2 different letters. I am wandering if it is possible after doing the mailmerges to then combine these 2 seperate word documents into 1 word document?
Here is my current mailmerging code:
objword = Null
Set objword = GetObject("C:\WordDocuments\" & filename, "Word.Document")
objword.Application.Visible = True
objword.MailMerge.OpenDataSource _
Name:="C:\AccessDatabase.mdb", _
LinkToSource:=True, _
Connection:="TABLE tbl_Data_Temp_AutoPrint", _
SQLStatement:="SELECT * FROM [tbl_Data_Temp_AutoPrint]"
objword.MailMerge.Execute
objword.Close
Thanks for the advice
Kind Regards,
Karv
I am probally asking the impossible but worth a shot.
I am currently mail merging from access (using VB code) data to 2 different letters. I am wandering if it is possible after doing the mailmerges to then combine these 2 seperate word documents into 1 word document?
Here is my current mailmerging code:
objword = Null
Set objword = GetObject("C:\WordDocuments\" & filename, "Word.Document")
objword.Application.Visible = True
objword.MailMerge.OpenDataSource _
Name:="C:\AccessDatabase.mdb", _
LinkToSource:=True, _
Connection:="TABLE tbl_Data_Temp_AutoPrint", _
SQLStatement:="SELECT * FROM [tbl_Data_Temp_AutoPrint]"
objword.MailMerge.Execute
objword.Close
Thanks for the advice
Kind Regards,
Karv
Last edited: