0
votes

At the office we are using several custom Word 2007 / 2010 templates. If we then send out doc files to clients they sometimes appear quite messy and ugly unformatted, as they do not have these templates on their machines.

Is there a way to embed templates into Word documents or kind of "flatten" these documents so they are not depending on the templates anymore and have formatting, images etc. all contained within just the Word doc file without needing the template anymore?

btw: I know printing the doc into a pdf and sending this would be a workaround, but we need to keep it in word, as clients have to be able to edit the documents.

1

1 Answers

0
votes

This macro will break the link between a document and its template:

Sub DivorceFromTemplate()
    ' Dissassociates the document from its Word Template
    With ActiveDocument
        .UpdateStylesOnOpen = False
        .AttachedTemplate = ""
    End With
End Sub