Running VBA in Excel 2016

gplhl

Board Regular
Joined
Feb 23, 2002
Messages
176
Many years ago, I got hold of a macro to list file names in a folder and its sub folder. All worked flawlessly until work updated to Excel 2016.

The macro is no longer listed in the macro lists to use. It does use a private function to create the list that populates the spreadsheet.

Even if I click in the code to run, it then brings up the macro list and doesn't run the code.

Anyway of getting this one working again?
Code:
Option Explicit

  Sub GetFileList()
     Dim myDir As String, myList()
     With Application.FileDialog(msoFileDialogFolderPicker)
         If .Show = True Then
             myDir = .SelectedItems(1)
         End If
     End With
     On Error Resume Next
     myList = SearchFiles(myDir, "*", 0, myList())
     If Err = 0 Then
         Range("A1").Value = "File Path"
         Range("B1").Value = "File Name"
         Range("A2").Resize(UBound(myList, 2), UBound(myList, 1)).Value = _
         Application.Transpose(myList)



     Else
         MsgBox "No file found"
     End If
     On Error GoTo 0
     Application.StatusBar = False
End Sub

Private Function SearchFiles(myDir As String _
     , myFileName As String, n As Long, myList()) As Variant
     Dim fso As Object, myFolder As Object, myFile As Object
     Set fso = CreateObject("Scripting.FileSystemObject")

     For Each myFile In fso.GetFolder(myDir).Files
         If (Not myFile.Name Like "~$*") * (myFile.Name <> ThisWorkbook.Name) _
         * (myFile.Name Like myFileName) Then
             n = n + 1
             ReDim Preserve myList(1 To 2, 1 To n)
             myList(1, n) = myDir
             myList(2, n) = myFile.Name

         End If
     Next
     For Each myFolder In fso.GetFolder(myDir).SubFolders
         SearchFiles = SearchFiles(myFolder.Path, myFileName, n, myList)
     Next
     SearchFiles = IIf(n > 0, myList, "")

End Function
 
Last edited by a moderator:

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
I can't see anything in that code that should be affected by 2016. When you click in the code to run, are you sure you are clicking inside the first Sub and not the Function code?
 
Upvote 0

Forum statistics

Threads
1,215,002
Messages
6,122,652
Members
449,092
Latest member
peppernaut

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top