» Launch Word file from Excel VBA
CATEGORY - Applications - Word, Outlook in VBA
VERSION - All Microsoft Excel Versions
This code will allow you to launch an existing Word file using a command button in Excel.
Private Sub CommandButton1_Click()
Set wrdApp = CreateObject("Word.Application")
Set wrdDoc = wrdApp.Documents.Open("C:FolderLocationFilename.doc")
End Sub
Book Store:
No comments have been submitted.

