» 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:
Recommended Books:
- Managerial Accounting: Tools for Business Decision Making, WebCT, 2nd Edition
- Investing in Real Estate, Fourth Edition
- The Intelligent Investor: The Definitive Book On Value Investing, Revised Edition
- The Ernst & Young Business Plan Guide
- Investing for Dummies, Third Edition
- East of Eden (Oprah's Book Club)
No comments have been submitted.

