open word doc via vba, then execute macro for the word document

daveyc18

Well-known Member
Joined
Feb 11, 2013
Messages
707
Office Version
  1. 365
  2. 2010
hi, i googled a way to open a word doc via Excel VBA

Code:
'Open an existing Word Document from Excel


Dim objWord As Object
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
'Change the directory path and file name to the location 'of the document you want to open from Excel
objWord.Documents.Open "c:\whatever.docx"


then what I want is Excel (or Word) to delete the all document then save it (i'm rolling over a file from the previous day and hence that's why I want everything cleared):

i recorded this macro in word to do such a task:

Code:
  Selection.WholeStory
    Selection.Delete Unit:=wdCharacter, Count:=1
    ActiveDocument.Save

obviously, using such code within Excel VBA does not work since i'm doing it within Excel and not word itself...

perhaps there's a way to use Excel vba to "call" that macro within the word document?
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
HTH. Dave
Code:
With objWord.activedocument
    .Range(0, .Characters.Count).Delete
'.Content.InsertAfter "New stuff" ' U can insert new stuff in empty doc here
End With
objWord.activedocument.Close savechanges:=True
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,725
Members
448,987
Latest member
marion_davis

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