you need to use the 'dir' command
Code:
Fullname = Dir(DOWNLOAD_PATH & FILE_MASK & "*" & FILE_EXT, vbNormal)
While Fullname <> ""
Workbooks.Open Filename:=DOWNLOAD_PATH & Fullname
FullName = Dir() 'used without arguments, takes the next file in the directory
Wend
set FILE_MASK = Sales, FILE_Ext = .XLS to an effective file search on Sales*.xls, for example.
Chris
There are two secrets to success in this world:
1. Never tell everything you know