Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Create a new Word Document

For creating a new Microsoft Word Document using Microsoft Excel, you need to follow the steps below:

  • Create the object of Microsoft Word
  • Add documents to the Word
  • Make the MS Word visible

Create the object of Microsoft Word

Set objWord = CreateObject(“Word.Application”)

Add documents to the Word

Set objDoc = objWord.Documents.Add

Make the MS Word Visible

objWord.Visible = True

Complete Code:

Function FnCreateWordDoc()

   Dim objWord

   Dim objDoc

   Set objWord = CreateObject("Word.Application")

   Set objDoc = objWord.Documents.Add    

   objWord.Visible = True

End Function



Also Read:

  1. VBA-Excel: Create worksheets with Names in Specific Format/Pattern.
  2. VBA-Excel: Edit And Save an Existing Word Document
  3. VBA-Excel — AttachmentFetcher — Download all the Attachments from All the Mails of Specific Subject in Microsoft Outlook .
  4. Send Mail With Multiple Different Attachments From MS Outlook using Excel.
  5. VBA-Excel: Enumerate all the opened word document