Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Writing Text to Word document

For writing text in 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 a Selection object with the help of WordObject.
  • Use this Selection object to type the text into the WordDocument.

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

Create a Selection object with the help of WordObject.

Set objSelection = objWord.Selection

Use this Selection object to type the text into the WordDocument.

objSelection.TypeText ("This is my text in Word Document using Excel")

Complete Code:

FunctionFnWriteToWordDoc()
   Dim objWord
   Dim objDoc

   Dim objSelection

   Set objWord = CreateObject("Word.Application")

   Set objDoc = objWord.Documents.Add    

   objWord.Visible = True

   Set objSelection = objWord.Selection

   objSelection.TypeText ("This is my text in Word Document using Excel")

End Function
Word- Write using Excel
Word- Write using Excel



Also Read:

  1. VBA-Excel: Working with Bookmarks- Insert text After Bookmark
  2. VBA-Excel: Working with Microsoft Word
  3. Excel-VBA : Open a MS Word Document using Excel File using Explorer Window.
  4. VBA-Excel: Working with Bookmarks- Insert text before Bookmark
  5. VBA-Excel — AttachmentFetcher — Download all the Attachments from All the Mails of Specific Subject in Microsoft Outlook .