ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Import code help (https://www.excelbanter.com/excel-programming/376844-import-code-help.html)

jln via OfficeKB.com

Import code help
 
Ok I need some help with the code below. I recorded this and what i need it
to do is not have a static file name. I need the user to select the file to
be used.


ActiveWorkbook.Worksheets.Add
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;H:\612_Export_MGIC_LPMI_060906_131358.CS V", Destination:=Range
("A1"))
.Name = "612_Export_MGIC_LPMI_060906_131358"
.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 = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With

--
Message posted via http://www.officekb.com


Dave Peterson

Import code help
 
Use that other code to get the name. Then change this line:

With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;H:\612_Export_MGIC_LPMI_060906_131358.CS V", _
Destination:=Range("A1"))

to

With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;" & myFileName, _
Destination:=Range("A1"))

ps. It's better to stay in the same thread.

"jln via OfficeKB.com" wrote:

Ok I need some help with the code below. I recorded this and what i need it
to do is not have a static file name. I need the user to select the file to
be used.

ActiveWorkbook.Worksheets.Add
With ActiveSheet.QueryTables.Add(Connection:= _
"TEXT;H:\612_Export_MGIC_LPMI_060906_131358.CS V", Destination:=Range
("A1"))
.Name = "612_Export_MGIC_LPMI_060906_131358"
.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 = False
.TextFileSemicolonDelimiter = False
.TextFileCommaDelimiter = True
.TextFileSpaceDelimiter = False
.TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1)
.TextFileTrailingMinusNumbers = True
.Refresh BackgroundQuery:=False
End With

--
Message posted via http://www.officekb.com


--

Dave Peterson


All times are GMT +1. The time now is 03:42 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com