Hi
I am looking for a vba solution to import multiple txt files at the same time to an Access DB.
While importing the filenames need to be stored in another table so next time these files should not be imported.
As an example,
i have multiple folders (can specify the paths in the module) where these text files are available (new files are copied by someone and store to these paths in a daily basis).
When I execute VBA module from an access DB, the code need to check for any new files in all these folders and import only contents from new files to a table in access db. And at the same, store the filename and path to another table so next time the code can cross check this and read only new files
While importing, one of the field in the txt file is data which is in 'yyyy.mm.dd' and that to be converted to a proper date format
When I run the module next time, it should cross check the filenames stored in the other table and import new files only.
Hope i explained well my issue and kindly request a help from the experts to solve this
I am looking for a vba solution to import multiple txt files at the same time to an Access DB.
While importing the filenames need to be stored in another table so next time these files should not be imported.
As an example,
i have multiple folders (can specify the paths in the module) where these text files are available (new files are copied by someone and store to these paths in a daily basis).
When I execute VBA module from an access DB, the code need to check for any new files in all these folders and import only contents from new files to a table in access db. And at the same, store the filename and path to another table so next time the code can cross check this and read only new files
While importing, one of the field in the txt file is data which is in 'yyyy.mm.dd' and that to be converted to a proper date format
When I run the module next time, it should cross check the filenames stored in the other table and import new files only.
Hope i explained well my issue and kindly request a help from the experts to solve this
Comment