Open excel work book.
press Alt+F11
tools > References >
put tick on "Microsoft word 15.0 object library"
Write below code
Dim wApp As Word.Application
Dim wDoc As Word.Document
Set wApp = CreateObject("Word.Application")
wApp.Visible = True
'Here only the word application will be opened.
if you put following line next a new word document will be created.
Set wDoc = wApp.Documents.Add
If you want to open a document in your hard drive ( (Location -D:\VBA LAB\Result.docx) ) you need to put following code
Set wDoc = wApp.Documents.Open("D:\VBA LAB\Result.docx")