Includetext retaining link after merge

L

Lynne Daniels

Hi,

Is there any way you get the Includetext to automatically
lose the link after the merge without manually breaking
the link later?

Thanks
Lynne
 
D

Doug Robbins - Word MVP

Run a macro containing the command

ActiveDocument.Fields.Unlink

Or, if you only want to unlink the Link fields and leave fields so that they
will update

Dim af As Field
For Each af In ActiveDocument.Fields
If af.Type = wdFieldLink Then
af.Unlink
End If
Next af



--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 

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