+ Reply to Thread
Results 1 to 14 of 14

Import text file

Hybrid View

  1. #1
    Registered User
    Join Date
    09-27-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: VBA code to Import text file

    Quote Originally Posted by bigmack View Post
    Hi,

    you can use the Open statement:
    Open "your directory path\file name.txt" for input as #1
    then read through each line within a loop until EOF. What part(s) of the text file are you specifically looking for?
    I need information as follows and data to be entered as 1 row

    Header
    Item Number, Description, last shipment, last receipt, Average Unit Cost, Stocking Unit, Qty on Hand, additional Information.

    Data
    47, lamp, dd/mmm/yy, dd/mmm/yy, ###,000.00, EA, 50.00, K5501

    I'm self-taught myself in vba, I understand loop code if i work on spreadsheet. however for this I cannot figure out how to capture data in a text file.

    any ideas or example with some explanation will be helpful for me.
    Last edited by norhaya; 09-28-2009 at 04:12 AM. Reason: Wrong Header

  2. #2
    Registered User
    Join Date
    05-20-2009
    Location
    NY
    MS-Off Ver
    Excel 2003
    Posts
    57

    re: Import text file

    Hi Norhaya,

    The header is the easy part. You don't need a macro for that! Here's a basic recipe--create the headers in sheet1. Now, you can begin importing/parsing data from a text file.

    dim i as Long
    dim tmpString as String
    dim tmpAverageUnitCost as String
    
    i = 2 
    ' Remember your headers are on Row 1, naturally, you want be begin on 2
    
    Open "c:\your directory here\" & "Filename.txt" For Input As #1
    Do While Not EOF(1) ' read entire text file until end of file
      Line Input #1, tmpString ' read each line and begin parsing
    
    ' let's go for an easy one, "Average unit cost" - after this, you should be able
    ' to come up with if-scenarios to parse out the remaining fields. The first 2 
    ' fields Item Number and Description you may have to just go with counting 
    ' the number of spaces
    
      if (InStr(tmpString, "Average unit cost")) > 0 Then
        tmpAverageUnitCost = Mid(tmpString, 20, 14)
    ' use instr to go after the fields
    ' use a string function like 'mid' to extract needed info--beginning on the
    ' 20th char and 14 chars long will get you 0.47. Now, to display this data 
    ' on to the Excel spreadsheet under the correct column (Average Unit
    ' Cost ... column E)
    
         Sheet1.Range("E" & i).Value = tmpAverageUnitCost
      End If
    
      i = i + 1  
    
    Loop
    Close #1

  3. #3
    Registered User
    Join Date
    09-27-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    7

    re: Import text file

    Hi BigMack

    Thank you I'll have a look when m back in office. fyi I've a large file and not possible to transfer all into excel 2003. That's why I would like to select relevant information only. I prefer to select relevant which u have given some ideas. My issues here is what the best solution to have the data for item number and description. I tried to go into an option to delete blank rows 1st and then concatenate the two lines. Another problem is, the "item number and description" will be on 1st header in the page of text file, that's why I'm a bit blank here.

    I'll come back n post my code here and let you review and give me feedback
    Last edited by shg; 09-30-2009 at 01:03 PM. Reason: deleted spurious quote

  4. #4
    Registered User
    Join Date
    09-27-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Import text file

    Quote Originally Posted by norhaya View Post
    Hi BigMack

    Thank you I'll have a look when m back in office. fyi I've a large file and not possible to transfer all into excel 2003. That's why I would like to select relevant information only. I prefer to select relevant which u have given some ideas. My issues here is what the best solution to have the data for item number and description. I tried to go into an option to delete blank rows 1st and then concatenate the two lines. Another problem is, the "item number and description" will be on 1st header in the page of text file, that's why I'm a bit blank here.

    I'll come back n post my code here and let you review and give me feedback
    Hi

    Below is my code, please review and comments, however, I am still not able to call up the part number and description. Any ideas?

    Sub ImportText()

    Dim i As Long, n As Long

    Dim tmpString As String
    Dim tmpAUC As String 'AUC = Average Unit Cost
    Dim Fname As String
    Dim tmpCAT As String 'CAT = Category
    Dim tmpPICK As String ' PICK = Picking Sequence
    Dim tmpUOM As String ' UOM = Unit of Measure
    Dim tmpPN As String ' PN = Part Number
    Dim tmpDesc As String ' Desc = Description
    Dim tmpQOH As Variant ' QOH = Qty on Hand


    Fname = "C:\Import\Accpac.txt"
    Open Fname For Input As #1
    Cells.Clear

    Range("A1:I1").Value = Array("Part No", "Desc", "Date Last Shipment", "Date Last Receipt", "Average Unit Cost", "UOM", "Qty On Hand", "Location", "Remarks")
    tmpPN1 = InStr(tmpString, "") & InStr(tmpString, " ") & InStr(tmpString, "category")
    i = 2
    n = 1
    Do While Not EOF(1)
    Line Input #1, tmpString
    If (InStr(tmpString, "Category")) > 0 Then
    tmpCAT = Right$(tmpString, 12)
    Sheet1.Range("C" & i).Value = tmpCAT

    ElseIf (InStr(tmpString, "Picking")) > 0 Then
    tmpPICK = Right$(tmpString, 12)
    Sheet1.Range("D" & i).Value = tmpPICK
    ElseIf (InStr(tmpString, "Average unit cost")) > 0 Then
    tmpUOM = Right$(tmpString, 16)
    tmpAUC = Mid(tmpString, 44, 14)
    Sheet1.Range("F" & i).Value = Trim(tmpUOM)
    Sheet1.Range("E" & i).Value = tmpAUC

    i = i + 1

    End If

    Loop
    Close #1
    Worksheets("Sheet1").Range("A1:I1").Columns.AutoFit

    End Sub

  5. #5
    Registered User
    Join Date
    09-27-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Import text file

    Hi Bigmack

    After going thru all the text, if I could join the line before line with "catergory" so it would be 1 string, then I could parse it easily. Can you guide/show me on the code? If this works then I can complete this task.

    Appreciate your assistance.

    Thanks, norhaya
    Last edited by norhaya; 10-02-2009 at 12:37 PM. Reason: to add code tags

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Import text file

    norhaya,

    Please edit your prior post to add code tags.
    Entia non sunt multiplicanda sine necessitate

  7. #7
    Registered User
    Join Date
    09-27-2009
    Location
    Singapore
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Import text file

    Quote Originally Posted by norhaya View Post
    Hi

    Below is my code, please review and comments, however, I am still not able to call up the part number and description. Any ideas?

    Sub ImportText()

    Dim i As Long, n As Long

    Dim tmpString As String
    Dim tmpAUC As String 'AUC = Average Unit Cost
    Dim Fname As String
    Dim tmpCAT As String 'CAT = Category
    Dim tmpPICK As String ' PICK = Picking Sequence
    Dim tmpUOM As String ' UOM = Unit of Measure
    Dim tmpPN As String ' PN = Part Number
    Dim tmpDesc As String ' Desc = Description
    Dim tmpQOH As Variant ' QOH = Qty on Hand


    Fname = "C:\Import\Accpac.txt"
    Open Fname For Input As #1
    Cells.Clear

    Range("A1:I1").Value = Array("Part No", "Desc", "Date Last Shipment", "Date Last Receipt", "Average Unit Cost", "UOM", "Qty On Hand", "Location", "Remarks")
    tmpPN1 = InStr(tmpString, "") & InStr(tmpString, " ") & InStr(tmpString, "category")
    i = 2
    n = 1
    Do While Not EOF(1)
    Line Input #1, tmpString
    If (InStr(tmpString, "Category")) > 0 Then
    tmpCAT = Right$(tmpString, 12)
    Sheet1.Range("C" & i).Value = tmpCAT

    ElseIf (InStr(tmpString, "Picking")) > 0 Then
    tmpPICK = Right$(tmpString, 12)
    Sheet1.Range("D" & i).Value = tmpPICK
    ElseIf (InStr(tmpString, "Average unit cost")) > 0 Then
    tmpUOM = Right$(tmpString, 16)
    tmpAUC = Mid(tmpString, 44, 14)
    Sheet1.Range("F" & i).Value = Trim(tmpUOM)
    Sheet1.Range("E" & i).Value = tmpAUC

    i = i + 1

    End If

    Loop
    Close #1
    Worksheets("Sheet1").Range("A1:I1").Columns.AutoFit

    End Sub
    Hi Bigmack

    After going thru all the text, if I could join the line before line with "catergory" so it would be 1 string, then I could parse it easily. Can you guide/show me on the code? If this works then I can complete this task.

    Appreciate your assistance.

    Thanks, norhaya

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Import text file

    CODE tags, please, not QUOTE tags, and only around code.

  9. #9
    Registered User
    Join Date
    05-20-2009
    Location
    NY
    MS-Off Ver
    Excel 2003
    Posts
    57

    Lightbulb Re: Import text file

    Norhaya, please follow the rules--simply edit your post and use <code> tags otherwise I cannot even post a hint for you.

+ 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