PDA

View Full Version : Finish & Merge



Thatsme
02-28-2012, 10:10 AM
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

Paul_Hossler
02-28-2012, 11:21 AM
You have to have the main document active, but this might do what you're looking to do



Option Explicit
Sub MergeToNewDocument()
Application.Dialogs(wdDialogMailMerge).Show

End Sub


Paul

Thatsme
03-01-2012, 11:43 AM
Thanx Paul. It works great.