break link VBA

J

Jan

Dear all,

Does anybody know how I can break links (coming from excel graphics)in word
using VBA?

the following solutions did not help me:
ActiveDocument.Fields.Unlink

Sub RemoveLinks()
Dim aField As Object

For Each aField In ActiveDocument.Fields
aField.LinkFormat.BreakLink
Next aField

End Sub


thanks,
Jan
 
Top