Hi Pete,

You use the "InsertFile" method with "myrange". Previously, you set myrange to the end of the document[VBA]Set myrange = ActiveDocument.Range
myrange.Collapse wdCollapseEnd[/VBA]so what you need to do instead is set myrange to the range of your target instead (the text formfield)[VBA]'where "Text1" is the name of your text form field
Set myRange = ActiveDocument.FormFields("Text1").Range
myRange.InsertFile "C:\Documents... etc, etc..."
[/VBA]