How would I call either in VBA or Macro the mail merge wizard to be already pointed at a particular table or query?
Thanks
How would I call either in VBA or Macro the mail merge wizard to be already pointed at a particular table or query?
Thanks

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
You can perform a mail merge entirely from code, but I don't think you do what you want.
In other words there is no docmd.... that calls the mail merge wizard?
In Word 2003 and before, you can display the old mail merge helper:
Application.Dialogs(wdDialogMailMergeHelper).Show
And in Word 2002/2003 you can activate the Mail Merge task pane:
Application.TaskPanes(wdTaskPaneMailMerge).Visible = True
Presumably, if you open the correct data source using code, then run either of the above, they'd show the data source.
But I don't know what the equivalent in Word 2007 would be.