Be the first user to complete this post
|
Add to List |
VBA-Excel: Enumerate all the opened word document
To enumerate all the 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
- Print all the word doc’s name and path
Create the object of Microsoft Word application object
Set objWord = GetObject(,"Word.Application")
Make the MS Word visible
objWord.Visible = True
Print all the word doc’s name and path
For each objDoc In objWord.Documents
Msgbox objDoc.Name
Next
Complete Code:
Function FnEnumerateAllWordDoc() Set objWord = GetObject(,"Word.Application") objWord.Visible = True For Each objDoc In objWord.Documents Msgbox “Name: “ & objDoc.Name & “ And “ & objDoc.Path Next End Function
Also Read:
- Send Mail With Multiple Different Attachments From MS Outlook using Excel.
- VBA-Excel: Add/Insert multiple Images/Pictures from a folder in Word Document
- VBA-Excel: Change Font, Color, Weight of Table Data in the Word document
- VBA-Excel: Consolidator – Merge or Combine Multiple Excel Files Into One
- VBA-Excel: Open word document using GetObject()