R
Roxana
Hi,
I am trying to import a text file into an Access table. I am using this code:
DoCmd.TransferText acImportDelim, , "tbl-Download", "C:\Download.csv", True
This code uploads the data into a table but I would like that next time I
run this code (button) data gets appended to the table. Is there a way I can
upload the data and append it to the table , all in one step ?
Would I have to do it in 2 steps /buttons one for TransferText into a temp
table and then an append query?
Thank you
Roxana
I am trying to import a text file into an Access table. I am using this code:
DoCmd.TransferText acImportDelim, , "tbl-Download", "C:\Download.csv", True
This code uploads the data into a table but I would like that next time I
run this code (button) data gets appended to the table. Is there a way I can
upload the data and append it to the table , all in one step ?
Would I have to do it in 2 steps /buttons one for TransferText into a temp
table and then an append query?
Thank you
Roxana