I would be grateful for some help.
I have a csv file as follows:
PurchaseOrderNumber,DocumentDate
6310S02621733,15/12/2009
6310S02621734,15/12/2009
I have created a table in Access2003 with the correct field names. The data type for both fields is "Text". I am trying to use VB code to import the data from the csv file to the table using code:
DoCmd.TransferText acImportDelim, , "ORDERS", "C:\cc.csv", True
It reads the data in but omits the letter "S" (fifth character in first field)
If the "S" is relaced with a "V" or "X" and I run the code, the "V" or "X" are imported correctly.
This must be caused by something incredibly simple, but unfortunately I cannot find it!!
Thanks in anticipation.
I have a csv file as follows:
PurchaseOrderNumber,DocumentDate
6310S02621733,15/12/2009
6310S02621734,15/12/2009
I have created a table in Access2003 with the correct field names. The data type for both fields is "Text". I am trying to use VB code to import the data from the csv file to the table using code:
DoCmd.TransferText acImportDelim, , "ORDERS", "C:\cc.csv", True
It reads the data in but omits the letter "S" (fifth character in first field)
If the "S" is relaced with a "V" or "X" and I run the code, the "V" or "X" are imported correctly.
This must be caused by something incredibly simple, but unfortunately I cannot find it!!
Thanks in anticipation.