- Codice: Seleziona tutto
Sub importa_dati()
With ActiveSheet.QueryTables.Add(Connection:= _
"ODBC;DSN=Sigla;DefaultDir=Z:\xyz\xyz;DriverId=533;FIL=dBase 5.0;MaxBufferSize=2048;PageTimeout=5;" _
, Destination:=Range("A1"))
.CommandText = Array("SELECT * FROM `Z:\xyz\xyz`\`CLIFO`")
.Name = "xyz_1"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.PreserveColumnInfo = True
.SourceConnectionFile = _
"C:\Documents and Settings\sax\Documenti\Origini dati utente\xyz CLIFO.odc"
.Refresh BackgroundQuery:=False
End With
End Sub
spero di essere stato chiaro ma mi sa che sono stato un pò complicato grazie per qualunque aiuto