I'm starting to work with macros and I have a list of over 100 files to open in VBA with names such as: Mark001.xls Mark_001_initial.xls Mark001_improvement.xls Mark002.xls Mark002_initial. Marc002_Improvement.xls Pol001.xls ...
Sub Macro1()
Dim FilesToOpen
FilesToOpen = Application.GetOpenFilename _
(FileFilter:="EXLS Files(*.xls), *.xls," & "Mark??? Files (Mark???.xls), Mark???.xls", MultiSelect:=True, Title:="EXLS Files To Open")
End Sub
This opens a window to select files, however there are no files to select,it doesn't identify them
There are also identical files in .txt format, but I only need to open the ones that are of type Mark001.xls, the larger names are irrelevant.
Also I need to copy them to a different folder. I tried to use OpenFile, SerchFile, and selectFile applications but had no success.
Thank you very much!
For
Application.GetOpenFilename
wildcards work only for the file extension as inThat will return all *.xls and *.xlsx files
Other Options:
.
.
To copy files use this: