The files in question aren't excel files, and the filter on these forums wouldn't let me attach them because it didn't recognize the structure. That's why I posted the images to show the "type" of files I was dealing with. I really don't have an Excel sheet to post, the only code I have is the macro recording to open and delimit one of the files but I need to be able to open/delimit/and combine all the files in the target location:
Sub Macro1()
'
' Macro1 Macro
'
'
ChDir "\\10.6.1.129\exports\LUNLEV"
Workbooks.OpenText Filename:="\\10.6.1.129\exports\LUNLEV\ARNO", Origin:= _
437, StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _
ConsecutiveDelimiter:=False, Tab:=True, Semicolon:=False, Comma:=True, _
Space:=False, Other:=False, FieldInfo:=Array(Array(1, 1), Array(2, 1), Array( _
3, 1), Array(4, 1), Array(5, 1), Array(6, 1), Array(7, 1), Array(8, 1), Array(9, 1), Array(10 _
, 1), Array(11, 1), Array(12, 1)), TrailingMinusNumbers:=True
End Sub
Bookmarks