how do you:
1) copy text from a range in an Excel Document.
2) Open a Word Document.
3) inserts the text into a specific part of the word document.
regards
Kojo
Edit: here is the approach
Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
Dim j As Integer
Set wrdApp = CreateObject("Word.Application")
wrdApp.Visible = True
Set wrdDoc = wrdApp.Documents.Open("C:\Files\DailyStrategy.doc")
With wrdDoc
If wrdDoc.Bookmarks.Exists("MarketCommentry")
Then wrdDoc.Bookmarks("MarketCommentry").Range.Text = shortString
wrdDoc.SaveAs "c:\temp\test.doc"
End If
' close the document
Set wrdDoc = Nothing
Set wrdApp = Nothing
End With
Here's some code I wrote for replacing bookmark text in Word
More details here
http://www.dailydoseofexcel.com/archives/2004/08/13/automating-word/
Here are some articles that may help:
Control Word from Excel using VBA in Microsoft Excel
Creating a Word Document with Excel VBA
Create formatted Word table from Excel data range