I ran a macro and modified it a little.
'/=================================================/
Sub Macro1()
Dim strConnection As String
Dim strFullFileName As String, strFolder As String
Dim strQueryName As String
strQueryName = "DeleteMe"
strFolder = "D:\Temp\"
strFullFileName = _
strFolder & strQueryName & ".dqy"
strConnection = "FINDER;" & strFullFileName
With ActiveSheet.QueryTables.Add( _
Connection:=strConnection, _
Destination:=Range("A1"))
.Name = strQueryName
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = True
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.PreserveColumnInfo = True
.Refresh BackgroundQuery:=False
End With
End Sub
'/=================================================/
HTH,
Gary Brown