Be the first user to complete this post
|
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:
- Excel-VBA : Open a MS Word Document using Excel File using Explorer Window.
- Excel-VBA : Send a Mail using Predefined Template From MS Outlook Using Excel
- VBA-Excel: Change Font, Color, Weight of Table Data in the Word document
- VBA-Excel: Appending Text to an Existing Word Document - at the End
- VBA-Excel - Merger - Merge or Combine Many Word Documents Into One