Saving a copy of a mailmerge document with the fields fixed

G

Gilbert De Ceulaer

I use a template with mailmerge fields (date, number, name, address,...)
Is there a way to save a copy of that document with the merged fields fixed
?
 
B

Bruce

I had the SAME question last week!
Graham Mayor responded with :

Break the link with Excel - CTRL+A then CTRL+SHIFT+F9
or by macro

Sub BreakLink()
Selection.WholeStory
Selection.Fields.Unlink
End Sub

You could incorporate this in the file save routine in your invoice template

Sub FileSave()
Selection.WholeStory
Selection.Fields.Unlink
ActiveDocument.Save
End Sub

Good luck!
Bruce
 
M

macropod

Hi Gilbert,

If you create a new document based on the template, then use Ctrl-A to select it all, followed by Ctrl-Shift-F9 to convert the
fields to text, that will 'fix' the mergefields.

Cheers

--
macropod
[MVP - Microsoft Word]


| I use a template with mailmerge fields (date, number, name, address,...)
| Is there a way to save a copy of that document with the merged fields fixed
| ?
|
|
|
| --------------------------------------------------------------------------------
| Mijn Postvak In wordt beschermd door SPAMfighter
| 2791 spam-mails zijn er tot op heden geblokkeerd.
| Download de gratis SPAMfighter vandaag nog!
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top