on 12-04-18, GiorgioDaPrato supposed :
Ottimo suggerimento.
La procedura seguente importa dall'esterno una tabella,
sostituendo l'omonima esistente (Table ovvero Link) nel
database corrente.
=========================
Private Sub Command81_Click()
Dim SourceDatabase As String, SourceTable As String, DestinationTable
As String
SourceDatabase = "D:\Access\MDB\BC1.accdb"
SourceTable = "Immobili"
DestinationTable = "Immobili"
On Error Resume Next
DoCmd.DeleteObject acTable, DestinationTable
On Error GoTo 0
DoCmd.TransferDatabase _
TransferType:=acImport, _
DatabaseType:="Microsoft Access", _
DatabaseName:=SourceDatabase, _
ObjectType:=acTable, _
Source:=SourceTable, _
Destination:=DestinationTable, _
StructureOnly:=False, _
StoreLogin:=False
End Sub
==================================
Sostituendo in TransferType, acImport con acLink si
creerà un collegamento anziché una tabella.
Bruno