J
johnboy7676
I have the following code that archives a table, and it works, but I'd
like to archive the table to the back-end, which is on a network
drive. (DAO)
Dim strSql As String
Dim strTableName As String
strTableName = "tblMasterFile" & Me.txtArchiveYear
strSql = "SELECT tblMasterFile.* INTO " & strTableName & " FROM
tblMasterFile;"
DoCmd.RunSQL strSql
Also, once the archived table is on the back-end, how can I link to it
automatically?
Thanks, John
like to archive the table to the back-end, which is on a network
drive. (DAO)
Dim strSql As String
Dim strTableName As String
strTableName = "tblMasterFile" & Me.txtArchiveYear
strSql = "SELECT tblMasterFile.* INTO " & strTableName & " FROM
tblMasterFile;"
DoCmd.RunSQL strSql
Also, once the archived table is on the back-end, how can I link to it
automatically?
Thanks, John