I know there is a way to append tables in databases other than the one you are currently working in. But is there any way to append a table in the current database from data in a another database. Linking tables is not an option.
Don't know if this is the sort of thing you're looking for...
You can use ADO to connect to different data sources..
eg.
Dim cnnOne As New ADODB.Connection
Dim cnnTwo As New ADODB.Connection
Dim rstOne As New ADODB.Recordset
Dim rstTwo As New ADODB.Recordset
Dim strSQL As String
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.