'Delete existing linked table
DoCmd.DeleteObject acTable, "Table1b"
'Link Table1a from BE and call it Table1b in FE
DoCmd.TransferDatabase acLink, "Microsoft Access", CurrentProject.Path & "\Data\be.accdb", acTable, "Table1a", "Table1b", False
First line of code deletes the linked table in the...