Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Experts,
How can I get name of all the files exist in one folder through VBA ??? Cheers !!! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Visit
http://www.experts-exchange.com/Prog..._21863237.html for one solution "Irfan Khan" wrote: Hi Experts, How can I get name of all the files exist in one folder through VBA ??? Cheers !!! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A simple Dir loop does it
Dim filename As String filename = Dir("C:\test\*.xls") Do While filename < "" Debug.Print filename filename = Dir() Loop -- __________________________________ HTH Bob "Irfan Khan" wrote in message ... Hi Experts, How can I get name of all the files exist in one folder through VBA ??? Cheers !!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copying all files in a folder to new folder | Excel Discussion (Misc queries) | |||
how can I specific a folder with wildcard criteria and excel will import all the correct files in that folder? | Excel Discussion (Misc queries) | |||
Iterating files in folder | Excel Worksheet Functions | |||
add same cell from all files in same folder | Excel Discussion (Misc queries) | |||
Files and folder library | Excel Discussion (Misc queries) |