Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I have a macro that selects a folder - the problem is that when it selects the folder you cant see the files there - is there some where to fix this - because they need to see where the file is in order to select the folder. Here is the macro - Thanks for your help Sub GetFolder2(Output) Dim Output As String ' For Excel 2002 If Val(Application.Version) < 10 Then MsgBox "This requires Excel 2002 or later.", vbCritical Exit Sub End If With Application.FileDialog(msoFileDialogFolderPicker) .InitialFileName = Application.DefaultFilePath & "\" .Title = "Please select a location for the backup" .Show If .SelectedItems.Count = 0 Then MsgBox "Canceled" 'Else ' MsgBox .SelectedItems(1) End If End With Output = Application.FileDialog(msoFileDialogFolderPicker). SelectedItems(1) End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro that selects mulitple columns | Excel Discussion (Misc queries) | |||
macro that selects mulitple columns | Excel Discussion (Misc queries) | |||
Copy a folder by macro | Excel Discussion (Misc queries) | |||
How to write macro that selects relative locations | Excel Worksheet Functions | |||
Start Macro after user selects a choice from a pick list | Excel Discussion (Misc queries) |