![]() |
Opening an Excel file from a Userform
Hi all,
I need some code that will allow me to open an Excel Workbook from a command button I have placed on my Userform. My Userform form has various command buttons that allow me to open Word documents, and I need the equivalent that will allow me to now open Excel files as well. This is an example of the code that sits under a command button that will allow me to open a Word document. Private Sub cmdShowDocument1_Click() Call OpenFile("C:\Document1.doc") End Sub .... and this is the called function. Public Sub OpenFile(ByVal File_Name As String) Dim OpenFileVar OpenFileVar = ShellExecute(0&, "open", File_Name, vbNullString, vbNullString, 1) End Sub I need something similar that will allow me to open Excel Workbooks. Thanks very much for your help with this. Regards Karen |
Opening an Excel file from a Userform
Karen,
Assuming you are running your code from Excel then... Workbooks.Open "FilePath\FileName.xls" Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware wrote in message... Hi all, I need some code that will allow me to open an Excel Workbook from a command button I have placed on my Userform. My Userform form has various command buttons that allow me to open Word documents, and I need the equivalent that will allow me to now open Excel files as well. This is an example of the code that sits under a command button that will allow me to open a Word document. Private Sub cmdShowDocument1_Click() Call OpenFile("C:\Document1.doc") End Sub .... and this is the called function. Public Sub OpenFile(ByVal File_Name As String) Dim OpenFileVar OpenFileVar = ShellExecute(0&, "open", File_Name, vbNullString, vbNullString, 1) End Sub I need something similar that will allow me to open Excel Workbooks. Thanks very much for your help with this. Regards Karen |
All times are GMT +1. The time now is 09:52 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com