Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() CLR wrote: I use Jim Cone's fine Add-in called "ListFiles" for this sort of thing. It's available for free at......... http://www.realezsites.com/bus/primi...e/products.php Vaya con Dios, Chuck, CABGx3 wrote in message oups.com... Hello, I'm trying to retrive files from a given directory into excel. I already have this file from another posted message: Sub GetFileNames() Dim F As Long Dim FileName As String Dim TheNames As Variant ReDim TheNames(1 To 1) FileName = Dir$("*.*") Do While Len(FileName) F = F + 1 ReDim Preserve TheNames(1 To F) TheNames(F) = FileName FileName = Dir$() Loop Cells(1, 1).Resize(F, 1).Value = Application.Transpose(TheNames) End Sub But I want to be able to set the path myself thanks Many thanks chuck But I need this as a part of another "sub" so I'm looking for code Regards, Giel |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
How do I retrieve changes to an unsaved excel document | Excel Discussion (Misc queries) | |||
Retrieve data from separate Excel session | Charts and Charting in Excel | |||
How do I retrieve changes to an unsaved excel document | New Users to Excel | |||
Default Save To directory doesn't work Excel 2003 | Excel Discussion (Misc queries) |