P
paul814
I'm trying to use this command to import a CSV file into a table...
DoCmd.TransferText acImportDelim, "RetSpec", "tblRet", "\\drake\subcon
\ret\data\ret.csv", False
it never does it...any ideas?
If I do a straight import using those Specifications "RetSpec" tblRet
is poppulated with the data from the CSV file without any problems.
Right above the DoCMD i have:
On Error GoTo BadImport
and BadImport is:
BadImport:
MsgBox "Ret data was NOT imported!!", vbOKOnly, "File Import
Problems"
Exit Sub
Any ideas? I always get my BadImport error.
DoCmd.TransferText acImportDelim, "RetSpec", "tblRet", "\\drake\subcon
\ret\data\ret.csv", False
it never does it...any ideas?
If I do a straight import using those Specifications "RetSpec" tblRet
is poppulated with the data from the CSV file without any problems.
Right above the DoCMD i have:
On Error GoTo BadImport
and BadImport is:
BadImport:
MsgBox "Ret data was NOT imported!!", vbOKOnly, "File Import
Problems"
Exit Sub
Any ideas? I always get my BadImport error.