+ Reply to Thread
Results 1 to 4 of 4

Parsing text file into excel

Hybrid View

  1. #1
    Registered User
    Join Date
    03-17-2012
    Location
    Mississauga,Ontario
    MS-Off Ver
    Excel 2007 and 2010
    Posts
    75

    Red face Parsing text file into excel

    hi everyone,Happy Holidays..just wondering if I can get some Christmastime cheer..

    I am trying to get this text file parsed into excel , I want each line of a order into separate columns.
    demarcated by 1) 2) indicating the next row etc....

    like 1) 601-408867 CUSTOMER NAME 14 LANGMAID CRT WHITBY ON ABC 123 TIM PARK 900T 2012/12/12 12/21/2012 2:51:14 PM WHITE WEST WRT8G3EW etc..



    1 )
    601-408867
    CUSTOMER NAME
    14 LANGMAID CRT WHITBY ON ABC 123
    TIM PARK 900T
    2012/12/12 12/21/2012 2:51:14 PM
    WHITE WEST WRT8G3EW
    00000010060402688883
    2 )
    768-901732
    CUSTOMER NAME
    14 LANGMAID CRT WHITBY ON ABC 123
    TIM PARK 900T
    2012/12/12 12/21/2012 2:51:14 PM
    WHITE WEST WRT8G3EW
    00000010060402688883
    3 )
    768-901732
    CUSTOMER NAME
    14 LANGMAID CRT WHITBY ON ABC 123
    TIM PARK 900T
    2012/12/12 12/21/2012 2:51:14 PM
    WHITE WEST WRT8G3EW
    00000010060402688883
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    11-28-2012
    Location
    Guatemala
    MS-Off Ver
    Excel 2010
    Posts
    2,394

    Re: Parsing text file into excel

    try the macro included
    Attached Files Attached Files

  3. #3
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: Parsing text file into excel

    Here's my interpretatoion
    Sub test()
        Dim fn As String, txt As String, m As Object, i As Long, n As Long, t As Long
        fn = ThisWorkbook.Path & "\SD3.txt"  '<-- alter file path/name
        txt = CreateObject("Scripting.FileSystemObject").OpenTextFile(fn).ReadAll
        With CreateObject("VBScript.RegExp")
            .Global = True
            .MultiLine = True
            .Pattern = "[^\n]+"
            Set m = .Execute(txt)
            For i = 0 To m.Count - 1
                If Trim$(m(i)) <> "" Then
                    .Pattern = "^\d+ ?\) ?$"
                    If .test(m(i)) Then
                        n = n + 1: t = 0
                    End If
                    t = t + 1
                    Cells(n, t).Value = m(i)
                End If
            Next
        End With
    End Sub

  4. #4
    Registered User
    Join Date
    03-17-2012
    Location
    Mississauga,Ontario
    MS-Off Ver
    Excel 2007 and 2010
    Posts
    75

    Re: Parsing text file into excel

    both of these work awesome.. God Bless you all this Holiday Season!
    Merry Christmas to you all !!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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