Open Word Document from Excel

  • Thread starter Thread starter Will Brown
  • Start date Start date
W

Will Brown

Does anyone know if it is possible to open a Word document from Excel, and
if so, how?
I have figured out how you run Word (Application.ActivateMicrosoftApp
xlMicrosoftWord), but I have
no idea what to do from there.
Thank you!

Will Brown
 
Hi Will
Sub OpenWordDoc()
Dim ObjWord As Object
Set ObjWord = CreateObject("Word.Application")
ObjWord.Documents.Open "C:\temp\test.doc"
ObjWord.Visible = True
End Sub

HTH
Cordially
Pascal
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top