Results 1 to 6 of 6

Thread: Import text file to an Excel file

  1. #1
    Junior Member
    Join Date
    May 2011
    Posts
    14
    Rep Power
    0

    Cool Import text file to an Excel file

    Hi everyone, here asking for your help again.

    I have two files, one is an excel file and the other a text file.

    I request your help to import the text file to an excel file and the end result is displayed as the worksheet called "CONCENTRATE"

    I hope I can help me.

    Greetings and Thanks.
    Attached Files Attached Files

  2. #2
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,122
    Rep Power
    10
    Hi,

    Try this

    Code:
    Sub kTest()
        
        Dim strTxt  As String
        Dim objFSO  As Object
        Dim arrOP(), Cols
        Dim i       As Long
        Dim n       As Long
        Dim x, Hdr
        Dim Pos1    As Long
        Dim Pos2    As Long
        Dim Pos3    As Long
        Dim Pos4    As Long
        Dim Flg     As Boolean
        
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        
        strTxt = objFSO.opentextfile("C:\MyFolder\corp.txt").readall '<<==== adjust the folder
        
        x = Split(strTxt, vbCrLf)
        
        Hdr = Array("TIPO", "NUM", "FECHA", "CUENTA", "CC", "DESCRIPCION CUENTA", "CONCEPTO POLIZA", "CARGO", "ABONO")
        
        Cols = Array(21, 10, 2, 41, 30)
        
        ReDim arrOP(1 To UBound(x), 1 To 9)
        
        For i = 0 To UBound(x)
            If x(i) Like "*Fecha*Concepto*" Then
                n = n + 1
                Pos1 = InStr(1, x(i), "de", 1)
                Pos2 = InStr(1, x(i), "No.", 1)
                Pos3 = InStr(1, x(i), "Concepto", 1)
                
                arrOP(n, 1) = Trim$(Mid$(x(i), Pos1 + 3, 3))
                arrOP(n, 2) = Trim$(Mid$(x(i), Pos2 + 3, 8))
                arrOP(n, 3) = CDate(Trim$(Mid$(x(i), Pos3 - 12, 10)))
                arrOP(n, 7) = Trim$(Mid$(x(i), Pos3 + 10))
                Pos4 = n
                Flg = True
                GoTo Nxt
            ElseIf Flg Then
                arrOP(n, 1) = arrOP(Pos4, 1)
                arrOP(n, 2) = arrOP(Pos4, 2)
                arrOP(n, 3) = arrOP(Pos4, 3)
                arrOP(n, 7) = arrOP(Pos4, 7)
                
                arrOP(n, 4) = Trim$(Mid$(x(i), Cols(0), Cols(1)))
                arrOP(n, 5) = Trim$(Mid$(x(i), Cols(0) + Cols(1), Cols(2) + 2))
                arrOP(n, 6) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + 2, Cols(3)))
                arrOP(n, 9) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) + 17, 15))
                If Len(arrOP(n, 9)) Then
                    arrOP(n, 8) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) + 2, 15))
                    Flg = False
                Else
                    arrOP(n, 8) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) - 7, 15))
                End If
                n = n + 1
            End If
    Nxt:
        Next
        If n Then
            [a1].Resize(, 9) = Hdr
            [a2].Resize(n - 1, 9).Value = arrOP
        End If
    End Sub
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

  3. #3
    Junior Member
    Join Date
    May 2011
    Posts
    14
    Rep Power
    0

    Import text file to an Excel file

    Thanks Admin

    The code works fine, but I have the following problem when importing.
    Sometimes in column I ("ABONO") in the text file are more than one record, now the importing is only the first row of column I and I need that when there are more records were imported also.

    Please could you help me with this?.

    annex the text file where the problem occurs and also annex the Excel file highlighting in yellow the way it should be.

    I appreciate your valuable time and help.
    Attached Files Attached Files

  4. #4
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,122
    Rep Power
    10
    Hi,

    Thanks for the feedback. Try this one.

    Code:
    Option Explicit
    
    Sub kTest()
        
        Dim strTxt  As String
        Dim objFSO  As Object
        Dim arrOP(), Cols
        Dim i       As Long
        Dim n       As Long
        Dim x, Hdr
        Dim Pos1    As Long
        Dim Pos2    As Long
        Dim Pos3    As Long
        Dim Pos4    As Long
        
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        
        strTxt = objFSO.opentextfile("C:\Users\Kannan\Downloads\corp.txt").readall '<<==== adjust the folder
        
        x = Split(strTxt, vbCrLf)
        
        Hdr = Array("TIPO", "NUM", "FECHA", "CUENTA", "CC", "DESCRIPCION CUENTA", "CONCEPTO POLIZA", "CARGO", "ABONO")
        
        Cols = Array(21, 10, 2, 41, 30)
        
        ReDim arrOP(1 To UBound(x), 1 To 9)
        
        For i = 0 To UBound(x)
            If x(i) Like "*Fecha*Concepto*" Then
                n = n + 1
                Pos1 = InStr(1, x(i), "de", 1)
                Pos2 = InStr(1, x(i), "No.", 1)
                Pos3 = InStr(1, x(i), "Concepto", 1)
                
                arrOP(n, 1) = Trim$(Mid$(x(i), Pos1 + 3, 3))
                arrOP(n, 2) = Trim$(Mid$(x(i), Pos2 + 3, 8))
                arrOP(n, 3) = CDate(Trim$(Mid$(x(i), Pos3 - 12, 10)))
                arrOP(n, 7) = Trim$(Mid$(x(i), Pos3 + 10))
                Pos4 = n
            ElseIf x(i) Like "*###-##-##*" Then
                arrOP(n, 1) = arrOP(Pos4, 1)
                arrOP(n, 2) = arrOP(Pos4, 2)
                arrOP(n, 3) = arrOP(Pos4, 3)
                arrOP(n, 7) = arrOP(Pos4, 7)
                
                arrOP(n, 4) = Trim$(Mid$(x(i), Cols(0), Cols(1)))
                arrOP(n, 5) = Trim$(Mid$(x(i), Cols(0) + Cols(1), Cols(2) + 2))
                arrOP(n, 6) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + 2, Cols(3)))
                arrOP(n, 9) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) + 17, 15))
                If Len(arrOP(n, 9)) Then
                    arrOP(n, 8) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) + 2, 15))
                Else
                    arrOP(n, 8) = Trim$(Mid$(x(i), Cols(0) + Cols(1) + Cols(2) + Cols(3) + Cols(4) - 7, 15))
                End If
                n = n + 1
            End If
        Next
        If n Then
            [a1].Resize(, 9) = Hdr
            [a2].Resize(n - 1, 9).Value = arrOP
        End If
    End Sub
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

  5. #5
    Junior Member
    Join Date
    May 2011
    Posts
    14
    Rep Power
    0
    Thanks,
    Works great.

    You saved me hours of work, it's great to have forums like this and people like you.


  6. #6
    Administrator Admin's Avatar
    Join Date
    Mar 2011
    Posts
    1,122
    Rep Power
    10
    Hi,

    Thanks for the feedback.
    Cheers !

    Excel Range to BBCode Table
    Use Social Networking Tools If You Like the Answers !

    Message to Cross Posters

    @ Home - Office 2010/2013/2016 on Win 10 (64 bit); @ Work - Office 2016 on Win 10 (64 bit)

Similar Threads

  1. Replies: 3
    Last Post: 06-10-2013, 06:12 PM
  2. How to extract all text from a word file?
    By vsrawat in forum Word Help
    Replies: 3
    Last Post: 09-25-2012, 10:24 PM
  3. How to extract all text from a ppt file
    By vsrawat in forum Powerpoint Help
    Replies: 2
    Last Post: 09-25-2012, 10:23 PM
  4. Write/Create Text File VBA
    By Admin in forum Download Center
    Replies: 0
    Last Post: 06-20-2011, 01:39 AM
  5. Replies: 1
    Last Post: 06-02-2011, 10:38 AM

Tags for this Thread

Posting Permissions

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