Hi
I have a macro that uses Data Import to import data into a spreadsheet each week the data is the same format each time. My problem is that each time I run the code it changes the named range so then my vlookups etc don't work
How can I get it to keep the same named range
heres the code:
I have a macro that uses Data Import to import data into a spreadsheet each week the data is the same format each time. My problem is that each time I run the code it changes the named range so then my vlookups etc don't work
How can I get it to keep the same named range
heres the code:
Code:
Sub DataImport()
'
' DataImport Macro
' Macro recorded 31/08/2006 by Nicola Joyce
'
'
Cells.Select
Selection.Clear
Selection.QueryTable.Delete
With ActiveSheet.QueryTables.Add(Connection:="TEXT;C:\Exported Data.txt", _
Destination:=Range("A1"))
.Name = "Exported Data"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.TextFilePromptOnRefresh = False
.TextFilePlatform = 437
.TextFileStartRow = 1
.TextFileParseType = xlDelimited
.TextFileTextQualifier = xlTextQualifierDoubleQuote
.TextFileConsecutiveDelimiter = False
.TextFileTabDelimiter = True
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = False
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, _
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 _
, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With
Columns("A:B").Select
Selection.Delete Shift:=xlToLeft
Range("A2").Select