![]() |
Macro To Open a User selected File
I need a macro that allows the user to select the file. I have figured out to
write a macro for specific path however, as this workbook will go to many differnt users that will have differnt names and paths for the file. Any help would be awsome. Thank in advance. -CM |
Macro To Open a User selected File
One way
There is no code to test if the workbook is open in this example Sub test() Dim FName As Variant Dim wb As Workbook Dim MyPath As String Dim SaveDriveDir As String SaveDriveDir = CurDir MyPath = ThisWorkbook.Path ChDrive MyPath ChDir MyPath FName = Application.GetOpenFilename(filefilter:="Excel Files (*.xls), *.xls") If FName < False Then Workbooks.Open (FName) End If ChDrive SaveDriveDir ChDir SaveDriveDir End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Chris" wrote in message ... I need a macro that allows the user to select the file. I have figured out to write a macro for specific path however, as this workbook will go to many differnt users that will have differnt names and paths for the file. Any help would be awsome. Thank in advance. -CM |
Macro To Open a User selected File
Your A PRO!
"Ron de Bruin" wrote: One way There is no code to test if the workbook is open in this example Sub test() Dim FName As Variant Dim wb As Workbook Dim MyPath As String Dim SaveDriveDir As String SaveDriveDir = CurDir MyPath = ThisWorkbook.Path ChDrive MyPath ChDir MyPath FName = Application.GetOpenFilename(filefilter:="Excel Files (*.xls), *.xls") If FName < False Then Workbooks.Open (FName) End If ChDrive SaveDriveDir ChDir SaveDriveDir End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Chris" wrote in message ... I need a macro that allows the user to select the file. I have figured out to write a macro for specific path however, as this workbook will go to many differnt users that will have differnt names and paths for the file. Any help would be awsome. Thank in advance. -CM |
All times are GMT +1. The time now is 01:48 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com