Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Get the Instance of already opened word document

For getting the instance of already opened Microsoft Word Document using Microsoft Excel, you need to follow the steps below:

  • Create the object of Microsoft Word application object
  • Make the MS Word visible
  • Check the name of currently open word doc

Create the object of Microsoft Word application object

Set objWord = GetObject(,"Word.Application")

Make the MS Word visible

objWord.Visible = True

Check the name of currently open word doc

Msgbox objWord.ActiveDocument.Name

Complete Code:

Function FnGetOpenedDocInstance

   Set objWord = GetObject(,"Word.Application")

   objWord.Visible = True

   Msgbox objWord.ActiveDocument.Name

End Function



Also Read:

  1. VBA-Excel: Update XML File
  2. VBA-Excel: Add Table and fill data to the Word document
  3. Excel-VBA : Send Mail with Embedded Image in message body From MS Outlook using Excel.
  4. Send Mail With Multiple Different Attachments From MS Outlook using Excel.
  5. VBA-Excel: Add Worksheets For All The Given Dates Except Weekends and Copy The Common Template In Each Worksheet