Charles,
Place the ollowing code on the OnClick event of a button on a form. Assign values to the variables, as per your particular required configuration.
'-----------------------------------------------------------------------------
'Set up viariables to control source and destination folders, tables, database.
'Note the target database and table structure MUST already exist.
'Set the next four variables as per your requirement.
'-----------------------------------------------------------------------------
SourceDBaseTable = "YourDBaseTable"
SourcePath = "A:\"
DestAccessTable = "YourTargetAccessTable"
DestAccessDatabase = "C:\YourPath\YourTargetAccessDatabase.mdb"
'------------------------------------------------------------------------
'Prevent Access append warnings, and append source records to destination
'database's table
'------------------------------------------------------------------------
DoCmd.SetWarnings False
DoCmd.RunSQL "INSERT INTO " & DestAccessTable & " IN '" & DestAccessDatabase & "' " & _
"SELECT * " & _
"FROM " & SourceDBaseTable & _
" IN '' [dBase IV;HDR=NO;IMEX=2;DATABASE=" & SourcePath & "];"
DoCmd.SetWarnings True
Good luck
Cheers,
Steve