Hi,
I did not get a response from my last question (posed in the VBA forum also). Wondering why?

The examples given to me were partially helpful but not fully applicable to this design. I have progressed a little. I hope you are still willing to assist me. Would like to get this project done so the users can begin use. I have successfully completed the merge using the wizard but my company wants users to be able to press one button to create the table and do the merge.
I am now getting an error on the
objWord.MailMerge.OpenDataSource. I am trying to get the path stated correctly. It is a long one. Do you think that is the problem? Is there a reason I can't just name the make table query that has already been executed without the long path? I tried it and it didn't work but am hopeful. The data is all ready to merge at the point where the objWord.MailMerge.OpenDataSource code is executed...
Do you have ideas for why I am getting the compile error on that code?
Dim objWord As Word.Application
Set objWord = GetObject("C:\Documents and Settings\jketcher\My Documents\Janis Folder November 6\ECG\MS Access Projects\ECGOpReview", _
"Word.Document")
'Make Word visible.
objWord.Application.Visible = True
'Set the mail merge data source as
objWord.MailMerge.OpenDataSource _
Name:="C:\Documents and Settings\jketcher\My Documents\Janis Folder November 6\ECG\MS Access Projects\OpReviewDBV8TestReport.mdb", _
LinkToSource:=True, Connection:="TABLE tblMergeFindings", _
SQLStatement:="SELECT * FROM[tblMergeFindings]"
'Execute the mail merge
objWord.MailMerge.Destination = wdSendToNewDocument
objWord.MailMerge.Execute
' Save and close the new document
objWord.Application.Options.SaveInterval = False
objWord.Application.ActiveDocument.SaveAs "OpReview_MailMerge"
objWord.Application.ActiveDocument.Close
objWord.Application.Quit wdDoNotSaveChanges
MsgBox "Mail Merge Complete!", vbOKOnly, "File Done"
DoCmd.Quit
Thank you so much for your assistance,
jketcher