If you use an Access VBA macro to launch the Word Mail Merge Main document,
yes, you could use the Word object model to save the document you opened
under another name. Or you could set up your Mail Merge Main Documents to be
Word templates (.dot) and create new documents based on them.
Typically when you automate Word to do a MailMerge, you have code like
Set objWord = CreateObject("Word.Application")
Set objDoc = appWord.Documents.Open("the pathname of the .doc")
To save the document under a new name, you could use
objDoc.SaveAs Filename:="the new .doc name you want to use"
However, I'd rather not go into more detail than that - it's probably better
to have a look around for good examples using Google or Google Groups.
Peter Jamieson
> Hello all,
>
[quoted text clipped - 16 lines]
> TIA,
> Rodger
rodger - 02 Jun 2007 16:45 GMT
Peter,
Thank you that works perfectly. I am using VBA Code and doing just as you
wrote. Never really thought to use the SaveAs method.
Thanks again.
Rodger
> If you use an Access VBA macro to launch the Word Mail Merge Main
> document, yes, you could use the Word object model to save the document
[quoted text clipped - 39 lines]
>> TIA,
>> Rodger