Hiya
I am using Word 2003 and need to break data links from a program called Goldmine which contains fields such as name, date address etc. I have tried recording a macro but nothing got recorded when I went edit>links>break link.
I then found the following code on this forum for breaking links
Quote:
Sub RemoveLinks()
Dim aField As Object
For Each aField In ActiveDocument.Fields
aField.LinkFormat.BreakLink
Next aField
|
End Sub
It doesn't work for me though as it is for Excel and now I'm totally stuck. Any help would be really appreciated.