I have a folder filled with many different excel files.
Is it possible to create a list, in excel, that populates all of the file names from a folder?
I have a folder filled with many different excel files.
Is it possible to create a list, in excel, that populates all of the file names from a folder?
This code will go into a set folder and extract all the .xls filenames
just attach it to a button
![]()
Sub Filenames() Dim fName, FNames(), FType, MyPath As String, i As Integer 'Change Folder to suit MyPath = "C:\" ChDrive MyPath ChDir MyPath FType = "*.xls" fName = Dir(FType) Do Until fName = "" i = i + 1 ReDim Preserve FNames(1 To i) FNames(i) = fName fName = Dir Loop If i = 0 Then MsgBox "No Files Found" Else For i = 1 To UBound(FNames) ActiveSheet.Cells(i, 1) = Left(FNames(i), Len(FNames(i)) - 4) 'Removes the ".xls" Next i End If End Sub
Mr MaGoo
Magoo.Inc MMVII
If i've helped please add to my Rep by Clicking on the Blue Scales in the top right hand corner of the post
I get a compile error with 'Sub Filename()' what do I need to fix?
Hi
Replace filepath from D:\my documents\ to your folder path and runt the macro
ravi![]()
Sub List_files() Dim x As Integer Dim f As String Cells(2, 1).Select f = Dir("D:\my documents\" & "*.xls") Do While Len(f) > 0 ActiveCell.Formula = f ActiveCell.Offset(1, 0).Select f = Dir() Loop End Sub
for some reason it doesn't seem to work. When I run it, it moves down one row with blanks. I realized that they aren't .xls, they're .txt. So i changed the .xls -> .txt.
Why doesn't this still work?
Code provided by Macdave works fine.
Look at the attached example.
Enter your path name in K1 [e.g. C:\Sales\Reports] and file type in K3 [e.g. .Doc].
And click the button.
List appears in column A.
modytrane
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks