strTable = "CopyOfTable1"
blnExists = False
For Each t In CurrentData.AllTables
If t.Name = strTable Then
blnExists = True
Exit For
End If
Next
If Not blnExists Then
DoCmd.TransferDatabase acImport, "Microsoft Access", CurrentDb.Name, acTable, "Table1", strTable, True
End If