+ Reply to Thread
Results 1 to 2 of 2

Importing Text Files: FieldInfo - Array's

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    01-09-2011
    Location
    Nomans, Land
    MS-Off Ver
    Excel 2007
    Posts
    103

    Importing Text Files: FieldInfo - Array's

    Hi,
    The code below will import text file's to excel and structure columns according to the arrays.
      Sub mTxtFile()
      
    screenUpdateState = Application.ScreenUpdating
    statusBarState = Application.DisplayStatusBar
    calcState = Application.Calculation
    eventsState = Application.EnableEvents
    
    Application.ScreenUpdating = False
    Application.DisplayStatusBar = False
    Application.Calculation = xlCalculationManual
    Application.EnableEvents = False
    
     
          Workbooks.OpenText Filename:= _
              "C:\excel\file.txt", _
              Origin:=xlWindows, _
              StartRow:=2, _
              DataType:=xlFixedWidth, _
              FieldInfo:=Array(Array(0, 1), Array(2, 1), Array(10, 1), Array(12, 1), Array(24, 1), Array(27, 1), _
              Array(39, 1), Array(49, 1), Array(52, 1), Array(56, 1), Array(69, 1), Array(82, 1), Array(95, 1), _
              Array(108, 1), Array(121, 1), Array(134, 1), Array(147, 1), Array(152, 1), Array(170, 1), _
              Array(188, 1), Array(201, 1), Array(202, 1), Array(210, 1), Array(217, 1), Array(230, 1), _
              Array(242, 1), Array(245, 1)), _
              DecimalSeparator:=".", _
              ThousandsSeparator:=",", _
              TrailingMinusNumbers:=False
    
    Application.ScreenUpdating = screenUpdateState
    Application.DisplayStatusBar = statusBarState
    Application.Calculation = calcState
    Application.EnableEvents = eventsState
    
    End Sub
    What I was uncapable of doing was to substitute the wide selection of Array's(10, 1), Array(24, 2), Array(82, 1), Array(95, 1), etc... for something more simple and efficient. Maybe using a loop or something which I am less familiar. Below is a piece of code I tried to use in the code above but I didn't have much success. Any help would be appreciated!


    ColumnsDesired = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
    15, 16, 17, 18, 19, 20, 21, 22)
    DataTypeArray = Array(1, 9, 3, 1, 1, 2, 1, 1, 1, 9, 9, 9, 1, 1, 1, 9, 1,
    9, 9, 9, 9, 9)
    
    For x = LBound(ColumnsDesired) To UBound(ColumnsDesired)
    ColumnArray(x, 1) = ColumnsDesired(x)
    ColumnArray(x, 2) = DataTypeArray(x)
    Next x
    Thanks
    Last edited by exc4libur; 05-14-2012 at 11:17 PM. Reason: Update

  2. #2
    Forum Contributor
    Join Date
    01-09-2011
    Location
    Nomans, Land
    MS-Off Ver
    Excel 2007
    Posts
    103

    Re: Importing Text Files: FieldInfo - Array's

    I tried using the second code from this link http://www.excelforum.com/excel-gene...parameter.html.

    Any help please?
    Last edited by exc4libur; 05-15-2012 at 07:16 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1