I tried to save such a csv file in a table:
XValue, YValue, Wert, Name, FzgID
, , "CARB (Evap Denom)", DIUMPR_CldStrtDenCldStrtTyp_C, 238
, , 800.0000000000000000, DIUMPR_ctGen.l500MD_C, 238
, , 10000.0000000000000000, DIUMPR_ctGen.l500MDInc_C, 238
, , 600.0000000000000000, DIUMPR_ctGen.nIgnMin_C, 238
, , 740.0000000000000000, DIUMPR_ctGen.pEnvMin_C, 238
, , 5.0048828125000000, DIUMPR_ctGen.rAPPMax_C, 238
I am using this code:
DoCmd.TransferText acImportDelim, , "tb_DCM_Daten", Filename, True
My problem is, for the first row in csv file. It doesnt save CARB (Evap Denom)"
in Wert
field in the table. other rows are saved without any problem.
If I have a cvs file with only one row like this:
XValue, YValue, Wert, Name, FzgID
, , "CARB (Evap Denom)", DIUMPR_CldStrtDenCldStrtTyp_C, 238
this row will be saved correctly in the table in database also with "CARB (Evap Denom)"
could someone say me the cause of this event?