A family of Microsoft word processing software products for creating web, email, and print documents.
Hi Ikard,
If you create a document with just the letterhead, and you apply a bookmark to the letterhead, you could then add an INCLUDTEXT field to the header of each of your mailmerge main documents pointing to the bookmarked letterhead in the 'source' document. From then on, any mailmerges you do will reflect whatever the current leterhead in the 'source' document. An INCLUDTEXT field's code that points to a bookmark in a document typically looks something like:
{INCLUDETEXT "C:\Users\SomeUser\Documents\Letterheads\MM_Letterhead.docx" "BookMark"}
If you're going to be storing the mailmerge output documents, you'll need to embed the INCLUDTEXT field in a QUOTE field, thus:
{QUOTE{INCLUDETEXT "C:\Users\SomeUser\Documents\Letterheads\MM_Letterhead.docx" "BookMark"}}
This will break the INCLUDTEXT field's link in the output document when the merge is executed.