You can use the DoCmd.TransferDatabase Method to create a link to a table in another Access database.
DoCmd.TransferDatabase TransferType:=acLink, _ DatabaseType:="Microsoft Access", _ DatabaseName:="C:\share\Access\Example Database.accdb", _ ObjectType:=acTable, _ Source:="Addresses", _ Destination:="Addresses_link"
I included option names, hoping it would be easier to keep track of which one is. But if this is too verbose, you can omit the option names and do it all on one line:
DoCmd.TransferDatabase acLink, "Microsoft Access", "C:\share\Access\Example Database.accdb", acTable , "Addresses", "Addresses_link"
source share