Any suggestions on how I can code the importing of a large text file into MS Excel, that exceeds the maximum number of lines available on a MS Excel worksheet (i.e. 65,536)?
Currently I am using the following code to import the file:
Workbooks.OpenText Filename:=SelectFile1, Origin:=xlWindows, StartRow:=1, DataType:=xlFixedWidth, FieldInfo:=Array(Array(0, 1), Array(7, _
1), Array(10, 1), Array(13, 1), Array(46, 1), Array(60, 1), Array(65, 1), Array(76, 1),Array(77, 1), Array(91, 1), Array(92, 1), Array(107, 1), Array(108, 1), Array(121, 1),Array(132, 1), Array(133, 1))
Any help would be appreciated!!
Cheers.
Currently I am using the following code to import the file:
Workbooks.OpenText Filename:=SelectFile1, Origin:=xlWindows, StartRow:=1, DataType:=xlFixedWidth, FieldInfo:=Array(Array(0, 1), Array(7, _
1), Array(10, 1), Array(13, 1), Array(46, 1), Array(60, 1), Array(65, 1), Array(76, 1),Array(77, 1), Array(91, 1), Array(92, 1), Array(107, 1), Array(108, 1), Array(121, 1),Array(132, 1), Array(133, 1))
Any help would be appreciated!!
Cheers.