Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Open word document using GetObject()

Open word document using GetObject(), you need to follow the steps below:

  • Get the reference to existing word file using GetObject
  • Get the object of Microsoft Word application object
  • Make the MS Word visible

Get the reference to existing word file using GetObject

Set objDoc = GetObject ("D:\OpenMe.docx")

Get the object of Microsoft Word application object

Set objWord = objDoc.Application

Make the MS Word visible

objWord.Visible = True

Function FnOpenWordDoc()

  Set objDoc = GetObject ("D:\OpenMe.docx")

  Set objWord = objDoc.Application

  objWord.Visible = True

End Function



Also Read:

  1. VBA-Excel: Add Table and fill data to the Word document
  2. VBA-Excel: Update XML File
  3. VBA-Excel: Change Font, Color, Weight of Table Data in the Word document
  4. Excel-VBA : Open a MS Word Document using Excel File using Explorer Window.
  5. VBA-Excel: Open an Existing Word Document