方法1
今のマクロでFILENが入ってるフォルダが判りますから,そこにある所定のファイルをすべて拾います。
基本形:
FILEN = application.getopenfilename
’中略
myPath = left(instrrev(filen, "\"))
myfile = dir(mypath & "*.txt")
do
if myfile like "AA*.txt" or myfile like "BB*.txt" then
msgbox myfile
end if
myfile = dir()
loop until myfile = ""
方法2
添付の参考URLなどを参考にフォルダ(ディレクトリ)を指定させ,そこにある所定のファイルを全て拾います。
フォルダを特定したあとは方法1と同じです。
http://officetanaka.net/excel/vba/tips/tips39.htm
お礼
ありがとうございました おかげさまでうまくいきました