Предполагая, что ваши имена файлов начинаются с ячейки A1, A2, A3 ..... и приведенный ниже код создаст файлы слов с образцом текста
Sub TEST1()
Dim lastrow As Variant
Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
Dim i, j As Integer
lastrow = Range("A" & Rows.Count).End(xlUp).Row
For j = 1 To lastrow
Set wrdApp = CreateObject("Word.Application")
wrdApp.Visible = True
Set wrdDoc = wrdApp.Documents.Add
With wrdDoc
For i = 1 To 5
.Content.InsertAfter "Sample Test Line #" & i
.Content.InsertParagraphAfter
Next i
'change the below location
If Dir("C:\work\MyNewWordDoc" & j & ".doc") <> "" Then ' Check if file exists already
Kill "C:\work\MyNewWordDoc.doc"
End If
.SaveAs ("C:\work\MyNewWordDoc" & j & ".doc")
.Close ' close the document
End With
wrdApp.Quit ' close the Word application
Set wrdDoc = Nothing
Set wrdApp = Nothing
Next j
End Sub