いくつかの .txt ファイルを含むディレクトリがあります。まあ言ってみれば
hi.txt
hello.txt
hello_test.txt
test.txt
VBA でファイル ダイアログを使用して、"*test.txt" に一致するファイル (つまり、最後の 2 つ) のみをドロップダウンに表示するようにフィルター処理するにはどうすればよいですか? または、* のみを使用できますか。フィルター?
以下は動作するはずですが、動作しません:
Sub TestIt()
Dim test As Variant 'silly vba for not having a return type..
test = Application.GetOpenFilename(FileFilter:="test (*test.txt), *test.txt")
End Sub
編集:これが明確でない場合の明確化:「 .txt」ファイルの代わりに「test.txt」をフィルター処理して、セレクターで hello_test.txt と test.txt からのみ選択できるようにします。