The following line should import a semi-colon ; delimited .csv text file to a table.
DoCmd.TransferText TransferType:=acImportDelim, SpecificationName:=specNote, TableName:="tblImport", FileName:="K:\path\file.csv"
However this puts all the fields in one field.
What is going wrong here?
Any suggestions?
I specified
- File format: Delimited
- Field delimiter:
;
I set this through the import wizard and saved this specification. With the wizard all went good.
I want to share the specification but I dont know how to do that?
Many thanks.