Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like Application.GetOpenFilename to prompt me to select a folder,
then open all files in that folder. What is the proper syntax please? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
John
This will open all the .xls files in the selected folder Sub Open_All_Files() Application.DisplayAlerts = False With Application.FileDialog(msoFileDialogFolderPicker) .Show MyPath = .SelectedItems(1) End With ActiveFile = Dir(MyPath & "*.xls") Do While ActiveFile < "" Workbooks.Open Filename:=MyPath & ActiveFile ActiveFile = Dir() Loop Application.DisplayAlerts = True End Sub Mike "John" wrote: I would like Application.GetOpenFilename to prompt me to select a folder, then open all files in that folder. What is the proper syntax please? . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I forgot to mention that in the folder picker you must 'Double Click' to
select the folder then OK Mike "Mike H" wrote: John This will open all the .xls files in the selected folder Sub Open_All_Files() Application.DisplayAlerts = False With Application.FileDialog(msoFileDialogFolderPicker) .Show MyPath = .SelectedItems(1) End With ActiveFile = Dir(MyPath & "*.xls") Do While ActiveFile < "" Workbooks.Open Filename:=MyPath & ActiveFile ActiveFile = Dir() Loop Application.DisplayAlerts = True End Sub Mike "John" wrote: I would like Application.GetOpenFilename to prompt me to select a folder, then open all files in that folder. What is the proper syntax please? . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Application.GetOpenFileName | Excel Programming | |||
Application.GetOpenFilename vs Application.Dialogs(xlDialogsOpen) | Excel Programming | |||
Application.GetOpenFilename | Excel Programming | |||
Application.GetOpenFilename | Excel Programming | |||
Application.GetOpenFilename | Excel Programming |