Insert a bookmark at the location where you want the data to appear and then
use the .Range property of the bookmark
ActiveDocument.Bookmarks("yourbookmark).Range.InsertBefore "your data"
If you have a space selected when you insert the bookmark, the data will be
inserted inside the bookmark and can then be referenced using a REF field if
necessary.
Alternatively, you can use a DOCVARIABLE field where you want the data to
appear and use
With ActiveDocument
.Variables("yourvariablename").Value = "your data""
.Range.Fields.Update
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
> Hello:
> I want to export some data from Ms project and insert these text into
[quoted text clipped - 4 lines]
> please give me some good ideas on how to do it.
> Thanks for your attention !