G
Guest
Sorry if this is a dup post but I got a server error on the first try.
I have a split db and need to export one of the linked tables to a 3rd db as
a table (not linked)
Here is the code I am trying to use:
Dim strSQL As String
On Error GoTo Errorcheck
strSQL = "SELECT * " & _
"INTO tblPrice_Catalog IN " & Application.CurrentProject.Path &
"\PriceList.mdb" & _
" FROM tblFinal_Price_Catalog;"
CurrentDb.Execute strSQL, dbFailOnError
Here is the error info:
?err.Number
3067
?err.Description
Query input must contain at least one table or query.
thanks in advance.
I have a split db and need to export one of the linked tables to a 3rd db as
a table (not linked)
Here is the code I am trying to use:
Dim strSQL As String
On Error GoTo Errorcheck
strSQL = "SELECT * " & _
"INTO tblPrice_Catalog IN " & Application.CurrentProject.Path &
"\PriceList.mdb" & _
" FROM tblFinal_Price_Catalog;"
CurrentDb.Execute strSQL, dbFailOnError
Here is the error info:
?err.Number
3067
?err.Description
Query input must contain at least one table or query.
thanks in advance.