I am having issues importing a space delimited file with DoCmd.TransferT ext.
I created a specification name through File->Get External Data->Import.
It all works fine when I import the file via the MS Access Import wizard and use the import specification name but when I replicate the same process through
that does not cooperate at all. The first 11 fields from the text file are imported in the first field of the table.
In either case, I do the import in a newly created table.
I created a specification name through File->Get External Data->Import.
It all works fine when I import the file via the MS Access Import wizard and use the import specification name but when I replicate the same process through
Code:
DoCmd.TransferText acImportDelim, "202DailyListImportSpecification", "tmp_202", cleanfile, False
In either case, I do the import in a newly created table.
Comment