Hi All,
I have a number of ranges which I would like to paste into word doc, when i do one it works fine however on the 2nd range it doesnt seem to work. So ideally it would paste the first range, then do a few spaces then the second range and so on. Would be good to have the page in landscape too. Below is the code I used.
Sub Excel_to_Word()
Dim appWord As Word.Application
Set appWord = New Word.Application
appWord.Visible = True
Range("C11:H13").Copy
appWord.Documents.Add.Content.Paste
Range("C20:L141").Copy
appWord.Documents.Add.Content.Paste
End Sub
I have a number of ranges which I would like to paste into word doc, when i do one it works fine however on the 2nd range it doesnt seem to work. So ideally it would paste the first range, then do a few spaces then the second range and so on. Would be good to have the page in landscape too. Below is the code I used.
Sub Excel_to_Word()
Dim appWord As Word.Application
Set appWord = New Word.Application
appWord.Visible = True
Range("C11:H13").Copy
appWord.Documents.Add.Content.Paste
Range("C20:L141").Copy
appWord.Documents.Add.Content.Paste
End Sub