» 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:
- Cashflow Quadrant: Rich Dad's Guide to Financial Freedom
- Learn MS Excel 2002 VBA/XML Programming
- Real Estate Loopholes: Secrets of Successful Real Estate Investing
- F1 Get the Most out of Excel! The Ultimate Excel tip Help Guide
- Mastering Excel 2000 (for beginner)
- Financial Shenanigans : How to Detect Accounting Gimmicks & Fraud in Financial Reports
No comments have been submitted.

