Thread
:
File list macro
View Single Post
#
2
Posted to microsoft.public.excel.programming
ianripping[_15_]
external usenet poster
Posts: 1
File list macro
this works easier: -
Sub ListFiles()
F = Dir("C:\*.XLS")
Do While Len(F) 0
ActiveCell.Formula = F
ActiveCell.Offset(1, 0).Select
F = Dir()
Loop
End Sub
got it from microsoft.co
--
Message posted from
http://www.ExcelForum.com
Reply With Quote
ianripping[_15_]
View Public Profile
Find all posts by ianripping[_15_]