In your original post, you said "the merge fields don't display the data"
when you select the View Merged Data button.
What do you see if you toggle the fields? I did not say to save the
document like that.
However, if you want the data to be merged immediately upon opening the
document, you will need to have code that executes the merge in a macro
named AutoOpen in the document, or AutoNew in template if the main document
is saved as a template.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I tried toggling the fields and saving like that, but I want the document
>to
[quoted text clipped - 7 lines]
>> button. Isn't there a way that when the document is opened, it appears
>> merged?
aleon - 08 Apr 2008 15:28 GMT
Do you have code and macro that I could use? Also, where in the document
would I put this macro? It's a document and not a template. Thanks.

Signature
aleon
> In your original post, you said "the merge fields don't display the data"
> when you select the View Merged Data button.
[quoted text clipped - 18 lines]
> >> button. Isn't there a way that when the document is opened, it appears
> >> merged?
Doug Robbins - Word MVP - 08 Apr 2008 19:56 GMT
This code in a macro of the names mentioned in my earlier post will execute
the merge when the document is opened
With ActiveDocument.MailMerge
.Destination = wdSendToNewDocument
.Execute
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Do you have code and macro that I could use? Also, where in the document
> would I put this macro? It's a document and not a template. Thanks.
[quoted text clipped - 25 lines]
>> >> appears
>> >> merged?