You do not need to unlink the fields in the source document before you
insert the text into a new document. They can be unlinked in the new
document.
Dim Source As Document, Target As Document
Dim fname As String
Dim arange As Range
Set Source = ActiveDocument
With Source
fname = .FormFields("TaskNumber").Result & "-" &
.FormFields("Client").Result
Set arange = .Sections(10).Range
arange.End = .Sections(11).Range.End
End With
Set Target = Documents.Add
With Target
.Range.FormattedText = arange.FormattedText
.Range.Fields.Unlink
.SaveAs fname
.Close
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I haven't written a macro before and I can see parts of macros that I need
> but don't know how to connect all of them together. Can anyone help?
[quoted text clipped - 28 lines]
> Selection.Copy
> End With
alisam - 27 Oct 2007 23:35 GMT
The macro was great, thank you very much.
PS I changed this line:
..FormFields("Client").Result
to
.FormFields("Client").Result (i.e a single dot)
> You do not need to unlink the fields in the source document before you
> insert the text into a new document. They can be unlinked in the new
[quoted text clipped - 51 lines]
> > Selection.Copy
> > End With
Doug Robbins - Word MVP - 28 Oct 2007 00:10 GMT
Yes, that was a typo (and my eyesight ain't what it used to be).

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> The macro was great, thank you very much.
> PS I changed this line:
[quoted text clipped - 64 lines]
>> > Selection.Copy
>> > End With