Consulting

Results 1 to 3 of 3

Thread: Finish & Merge

  1. #1
    VBAX Regular
    Joined
    Nov 2010
    Posts
    11
    Location

    Finish & Merge

    Hi,

    Can anyone help with the following problem :

    I have a button in word doc. I want that, when i click the button the dialog "Merge to new document " from "Finish & merge" to appear.

    Thanks

  2. #2
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,730
    Location
    You have to have the main document active, but this might do what you're looking to do


    [VBA]
    Option Explicit
    Sub MergeToNewDocument()
    Application.Dialogs(wdDialogMailMerge).Show

    End Sub
    [/VBA]

    Paul

  3. #3
    VBAX Regular
    Joined
    Nov 2010
    Posts
    11
    Location
    Thanx Paul. It works great.

Posting Permissions

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