Public Sub Test() Dim w As New Word.Application Dim d As Word.Document Dim i As Integer On Error GoTo eh w.Visible = True Set d = w.Documents.Open("d:\test.doc") For i = 1 To d.Tables(1).Rows.Count ThisWorkbook.Worksheets(1).Cells(i, 1) = d.Tables(1).Columns(1).Cells(i) Next ieh: d.Close w.Quit Set d = Nothing Set w = NothingEnd Sub