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
Bookmarks