Good day everyone.
I need help on this matter.
Im using this code to import a Table from a different Access database.
Im sorry if this may be confusing. What Im trying to accomplish is to Import the Data From a different Access Databse (Tbl_InvDV_28-01-2016) to an existing table (Temp_DV), the code works but instead of inserting the data to the existing table it creates a new table (Temp_DV1, 2...).
I need help on this matter.
Im using this code to import a Table from a different Access database.
Code:
DoCmd.SetWarnings False
DoCmd.TransferDatabase acImport, "Microsoft Access", selectFile, acTable, "Tbl_InvDV_28-01-2016", "Temp_DV", False
DoCmd.SetWarnings True
Im sorry if this may be confusing. What Im trying to accomplish is to Import the Data From a different Access Databse (Tbl_InvDV_28-01-2016) to an existing table (Temp_DV), the code works but instead of inserting the data to the existing table it creates a new table (Temp_DV1, 2...).