Results 1 to 4 of 4
  • Thread Tools
  1. 5 Star Lounger
    Join Date
    Nov 2001
    Location
    Jerusalem, Israel
    Posts
    708
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Call Mail merge Wizard (2007)

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

  2. Plutonium Lounger
    Join Date
    Mar 2002
    Posts
    84,353
    Thanks
    0
    Thanked 10 Times in 10 Posts

    Re: Call Mail merge Wizard (2007)

    You can perform a mail merge entirely from code, but I don't think you do what you want.

  3. 5 Star Lounger
    Join Date
    Nov 2001
    Location
    Jerusalem, Israel
    Posts
    708
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: Call Mail merge Wizard (2007)

    In other words there is no docmd.... that calls the mail merge wizard?

  4. Plutonium Lounger
    Join Date
    Mar 2002
    Posts
    84,353
    Thanks
    0
    Thanked 10 Times in 10 Posts

    Re: Call Mail merge Wizard (2007)

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •