VBA Novice here: Opening a new Word Document from Excel

Offroadracer_814

New Member
Joined
Aug 7, 2015
Messages
23
To All:

I am a VBA novice. However, I can not figure out how to write VBA code to open a new Word Document from Excel.

Can anyone assist in this?

All I need is to open a blank new word document. Then I 'think" I can figure out how to copy and paste from Excel to Word.

Thanks

Kevin
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Here's an example that uses early binding. First, set a reference to the Word object library as follows...

VBA Code:
Visual Basic Editor >> Tools >> References >> check/select Microsoft Word Object Library >> OK

Then try the following...

VBA Code:
Option Explicit

Sub test()

    Dim wdApp As Word.Application
    Set wdApp = New Word.Application
  
    wdApp.Visible = True
  
    Dim wdDoc As Word.Document
    Set wdDoc = wdApp.Documents.Add
  
    'etc
    '
    '
  
End Sub

For additional information, have a look at the following Microsoft reference article...


Hope this helps!
 
Upvote 1
Solution
That works. I also did not have the "Visual Basic Editor >> Tools >> References >> check/select Microsoft Word Object Library >> OK" selected. I had the Microsoft Office Object Library selected. Thinking that would cover Word.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top