bengalliboy
MIS
I am trying to import data file into an existing table in Access using VBA. The following commands can import fine but it does not import to the existing table. If the table exists, it just create a new table with an incriment...like :Existing Table1
I just don't know why it does not import to the same table....
DoCmd.TransferDatabase TransferType:=acImport, _
DatabaseType:="Dbase IV", _
databasename:="c:\mydb, ObjectType:=acTable, _
Source:=data.dbf, _
Destination:="Existing Table"
Can any one help? Thanks in advance....
I just don't know why it does not import to the same table....
DoCmd.TransferDatabase TransferType:=acImport, _
DatabaseType:="Dbase IV", _
databasename:="c:\mydb, ObjectType:=acTable, _
Source:=data.dbf, _
Destination:="Existing Table"
Can any one help? Thanks in advance....