Link to home
Start Free TrialLog in
Avatar of DrEnnui
DrEnnui

asked on

import multiple CSV files in a single directory to an Access table

I have a large collection of CSV files in a single folder that I want to append to a single table in Access 2007, and have decided that the builtin VBA would be the easiest way to do so, regardless of my inexperience with it.

While testing the code snippet below, it would "Run time error 3011" on the DoCmd.TransferText line, claiming that the object 'filename.txt' - correctly the first file in the directory - could not be found.  The variable holding the filepath "sf" shows the correct path value while debugging.  I am suspecting that the format of the filename, which includes periods and spaces, might be a problem.  The format of the filename is determined by the exporting application and is beyond my control.

If the name format is my problem, how can I replace the offending characters programatically?  If the name is not the problem, what am I doing wrong.
Dim fso As New FileSystemObject
Dim f As Folder
Dim sf As File
Dim path As String
 
path = "C:\path\to\directory\"
Set f = fso.GetFolder(path)
 
For Each sf In f.Files
    DoCmd.TransferText acImportDelim, , "tbl_TempBuys", sf, -1
Next

Open in new window

Avatar of Kelvin Sparks
Kelvin Sparks
Flag of New Zealand image

I think sf in this case will only give you the file name, you need a string with the concatenation of f and sf.

Try debugging the code and see what sf is as it runs.


Kelvin
Avatar of DrEnnui
DrEnnui

ASKER

It is the correct full path and file name.
ASKER CERTIFIED SOLUTION
Avatar of Kelvin Sparks
Kelvin Sparks
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of DrEnnui

ASKER

That appeared to do it.  I just had to find a way of doing mass renaming.  Thanks!