Need help...please..I have a small table that I am using a macro to (1)delete old records from table, (2)transfer text (text.csv file with quotation marks as delimiter) to same table. My problem is when I use the macro (it does work) it will append the new data with the delimiter (""). I have changed the import specifications several times but nothing seems to work. I am new to access so I'm sure this is something pretty simple but it has frustrated me to no end. I have a delete old data query and an append new data query but when I used the append query it would not work correctly so I am now using the transfer text action. Does anyone have any ideas??? Sorry for the long post but I am lost...I am using Access 2000. Thanks in advance....
Code:
[b]Actions[/b]
OpenQuery - using delete old data query
Transfer Text - using text.csv file with ""delimiter
MsgBox - Update complete!
[b]Arguments[/b]
QueryName - Otime delete
View - Datasheet
DataMode - Edit
TransferType - Delimited (I tried fixed width also..no go)
[b]Delete Query[/b]
DELETE DISTINCTROW table.*
FROM table;
[b]Append Query[/b]- could not get it to work correctly
INSERT INTO table ( LastName, FirstName, Department, Title, Amt, Sex, Bldg, Shift )
SELECT table.LastName, table.FirstName, table.Department, table.Title, table.Amt, table.Sex, table.Bldg, table.Shift
FROM table;