Hello all, I would like to import an CSV file (see below) to an table in access with the command below. I only get one field name in the table with the
name: Header1;Header2. How can I get two field name: Header1 and Header2?
/P
Command
========
CSV file
=======
name: Header1;Header2. How can I get two field name: Header1 and Header2?
/P
Command
========
VBA Code:
DoCmd.TransferText _
TransferType:=acImportDelim, _
TableName:="TEST", _
FileName:="C:\TEST.CSV", _
HasFieldNames:=True
CSV file
=======
Code:
Header1;Header2
1;2
Last edited by a moderator: