
Originally Posted by
Burnsterboy
If I am understanding you correctly I still have to manually move a file to a different directory...

Originally Posted by
JBeaucaire
My suggestion is to have your import macro MOVE the .csv files
Then you are not understanding me correctly. I suggested the macro you are using to import move the file when it's done with the import.
The VBA function NAME() allows you to move a file to another location effectively by renaming it. I have several macros that do this...import all the files in a single folder and move them when done. Here's one for you to look over:
The section of code of relevance is:
'move file to "imported" folder
Name fPath & fName As fPathDone & fName
Naming a file and applying a different directory with the same filename effectively moves it. And this is far less hurdles to jump through than trying to decipher an ever-growing list of files for the latest addition.
Bookmarks