Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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