I have this Sub CopyAndPaste()
Dim myfile, wdApp As New Word.Application, wdDoc As Word.Document
myfile = Application.GetOpenFilename(, , "Browse for Document")
Dim lrow As Long, rng As Range, cell As Range
lrow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
Set rng = Range("A2:A" & lrow)...