» Launch Word file from Excel VBA
CATEGORY - Applications - Word, Outlook in VBA
VERSION - All Microsoft Excel Versions
Thanks to Ralph Hernandez from Elk Grove Village, Illinois for submitting the tipThis 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:
Recommended Books:
- Financial Statement Analysis: A Practitioner's Guide, 3rd Edition
- Financial Reporting and Analysis (2nd Edition)
- The Analysis and Use of Financial Statements
- Absolute Beginner's Guide to Microsoft Office Excel 2003
- Learn MS Excel 2002 VBA/XML Programming
- The Accounting Game : Basic Accounting Fresh from the Lemonade Stand
No comments have been submitted.

