THE_NEW_XL_GUY
New Member
- Joined
- Dec 20, 2017
- Messages
- 47
Hi guys,
Need a way to select multiple csv/xls files with different names through browse function.
code I have now:
I have around 10 files with different names, names way vary slightly each time I browse.
All I want to know is there a way to search the folder with keywords of file and then open the files and perform action specified with that keyword,
close the opened 10 files. I have 10 macros to be performed on them
thanks in advance.
Need a way to select multiple csv/xls files with different names through browse function.
code I have now:
Code:
Fname = Application.GetOpenFilename(FileFilter:="XLS Files (*.xls),*.xls,CSV Files (*.csv),*.csv", Title:="Select a file or files",
MultiSelect:=True)
I have around 10 files with different names, names way vary slightly each time I browse.
All I want to know is there a way to search the folder with keywords of file and then open the files and perform action specified with that keyword,
close the opened 10 files. I have 10 macros to be performed on them
thanks in advance.