Q
Qaspec
I am attempting to import a csv text file into access2003. I get an import
error table that contains "Unparsable Record" for almost every row. I beleive
this is happening because the column from the text file is set to double and
access automatically is trying to assign long integer. Can I re-assign to
long integer without losing records or can I make Access keep the double data
type from the text file?
here is my macro..
Sub ImportCSVFile()
DoCmd.TransferText ImportDelim, csv, "Table1", "J:\Sample\New.csv", No
End Sub
error table that contains "Unparsable Record" for almost every row. I beleive
this is happening because the column from the text file is set to double and
access automatically is trying to assign long integer. Can I re-assign to
long integer without losing records or can I make Access keep the double data
type from the text file?
here is my macro..
Sub ImportCSVFile()
DoCmd.TransferText ImportDelim, csv, "Table1", "J:\Sample\New.csv", No
End Sub