2016-11-07 151 views
0

我正在使用VBA將固定文本文件導入到excel文件中。 我有一個問題,修正列(自動擬合)與數字的小數的擬合。使用VBA將固定文本文件導入到excel中

我有一個小數儘可能多5027.1202024.0000.0000.000.0000.0000.0000並想簡化爲5027.12,因爲我的列不合適,只是分離。除了聲明幾個數組並修復它的寬度之外,還有另一種方法嗎?該文本文件已被固定。 我還是新手,我會幫助你。由於

編輯:

Option Explicit 
Sub ImportPrepayment() 
    Dim fpath 
    Dim x As Integer 
    Dim wkbAll As Workbook 
    Dim wkbTemp As Workbook 
    Dim sDelimiter As String 

    'Call import_TExtFileR12 

    On Error GoTo ErrHandler 
    Application.ScreenUpdating = False 

    sDelimiter = "|" 

    fpath = Application.GetOpenFilename _ 
     (FileFilter:="Text Files (*.txt), *.txt", _ 
     MultiSelect:=True, Title:="Text Files to Open") 

    If TypeName(fpath) = "Boolean" Then 
     MsgBox "No Files were selected" 
     GoTo ExitHandler 
    End If 

    x = 1 
    Set wkbTemp = Workbooks.Open(FileName:=fpath(x)) 
    wkbTemp.Sheets(1).Copy 
    Set wkbAll = ActiveWorkbook 
    wkbTemp.Close (False) 
    wkbAll.Worksheets(x).Columns("A:A").TextToColumns _ 
     Destination:=Range("A1"), DataType:=xlDelimited, _ 
     TextQualifier:=xlDoubleQuote, _ 
     ConsecutiveDelimiter:=False, _ 
     Tab:=False, Semicolon:=False, _ 
     Comma:=False, Space:=False, _ 
     Other:=True, OtherChar:="|" 
    x = x + 1 

    While x <= UBound(fpath) 
     Set wkbTemp = Workbooks.Open(FileName:=fpath(x)) 
     With wkbAll 
      wkbTemp.Sheets(1).Move After:=.Sheets(.Sheets.Count) 
      .Worksheets(x).Columns("A:A").TextToColumns _ 
       Destination:=Range("A1"), DataType:=xlDelimited, _ 
       TextQualifier:=xlDoubleQuote, _ 
       ConsecutiveDelimiter:=False, _ 
       Tab:=False, Semicolon:=False, _ 
       Comma:=False, Space:=False, _ 
       Other:=True, OtherChar:=sDelimiter 
     End With 
     x = x + 1 
    Wend 


Range("A17:XFD" & x).Delete shift:=xlUp 
'Range("A1").Value = "Supplier Name" 
    ' Range("C1").Value = "Supplier Number" 
    'Range("D1").Value = "Inv Curr Code" 
    'Range("E1").Value = "Payment Cur Code" 
    'Range("F1").Value = "Invoice Type" 
    'Range("G1").Value = "Invoice Number" 
    'Range("H1").Value = "Voucher Number" 
    'Range("I1").Value = "Invoice Date" 
    'Range("J1").Value = "GL Date" 
    'Range("K1").Value = "Invoice Amount" 
    'Range("L1").Value = "Witheld Amount" 
    'Range("M1").Value = "Amount Remaining" 
    'Range("N1").Value = "Description" 
    'Range("O1").Value = "Account Number" 
    'Range("P1").Value = "Invoice Amt" 
    'Range("Q1").Value = "Withheld Amt" 
    'Range("R1").Value = "Amt Remaining" 
    'Range("S1").Value = "User Name" 


Call ProcessUsedRange 
Columns.EntireColumn.HorizontalAlignment = xlCenter 
Columns.EntireColumn.AutoFit 
ExitHandler: 
    Application.ScreenUpdating = True 
    Set wkbAll = Nothing 
    Set wkbTemp = Nothing 
    Exit Sub 

ErrHandler: 
    If Err.Number <> 0 Then MsgBox Err.Number & " " & Err.Description 
    Resume ExitHandler 
End Sub 
Sub ProcessUsedRange() 
    Dim r As Range 
    Dim regex As Object, Match As Object 
    Set regex = CreateObject("VBScript.RegExp") 
    With regex 
     .Pattern = "\d{4}.\d{4}.\d{4}.\d{3}.\d{4}.\d{4}.\d{4}" 
     .Global = True 
    End With 

    For Each r In ActiveSheet.UsedRange 
     If regex.Test(r.Text) Then 
      For Each Match In regex.Execute(r.Value) 
       r.Value = "'" & Replace(r.Value, Match.Value, "") 
      Next 
     End If 
    Next 
End Sub 
+0

抱歉過了這麼久纔回來給你,但我張貼了另一個答案。 – 2016-11-10 00:09:42

+0

您好托馬斯上面是我的更新代碼加上您的代碼(再次感謝!)現在我的問題是我必須省略這些額外的頭只適合每一列,因爲它有很多頁我不知道如何循環或循環正在因爲它將一遍又一遍地與文本文件中的其他頁面一起使用 – Anne

回答

0

而不是使用TextToColumnsWorkbooks.OpenText的;只需讀取文本文件並處理數據即可。

enter image description here

Sub ImportPrepayment2() 
    Dim fpath As Variant 
    Dim wb As Excel.Workbook 
    Dim ws As Excel.Worksheet 
    Dim Text As String 
    On Error GoTo terminatemsg 

    Set wb = Excel.ActiveWorkbook 
    Set ws = Excel.ActiveSheet 

    fpath = Application.GetOpenFilename(Filefilter:="text Files(*.txt; *.txt), *.txt; *.txt", Title:="open") 

    If fpath = False Then Exit Sub 

    Application.ScreenUpdating = False 
    Application.DisplayAlerts = False 

    Text = getTextfileData(fpath) 
    If Len(Text) Then 
     ProcessData Text 
     AdjustDates 
    Else 
     MsgBox fpath & " is empty", vbInformation, "Import Cancelled" 
     Exit Sub 
    End If 

    Columns.EntireColumn.AutoFit 
    Sheets(1).Move Before:=wb.Sheets(1) 

terminatemsg: 
    Application.ScreenUpdating = True 
    Application.DisplayAlerts = True 
    If Err.Number <> 0 Then MsgBox Err.Number & " " & Err.Description 

End Sub 

Sub ProcessData(Text As String) 
    Dim x As Long, y As Long, z As Long 
    Dim data, vLine 

    data = Split(Text, vbCrLf) 
    x = 2 
    Range("A1:R1").Value = Array("Supplier Name", "Supplier Number", "Inv Curr Code CurCode", "Payment CurCode", "Invoice Type", "Invoice Number", "Voucher Number", "Invoice Date", "GL Date", "Invoice Amount", "Withheld Amount", "Amount Remaining", "Description", "Account Number", "Invoice", "Withheld", "Amt", "User") 

    For y = 0 To UBound(data) 
     If InStr(data(y), "|") Then 
      vLine = Split(data(y), "|") 
      If Not Trim(vLine(0)) = "Supplier" Then 

       For z = 0 To UBound(vLine) 
        vLine(z) = Trim(vLine(z)) 

        If vLine(z) Like "*.*.*.*.*.*.*.*" Then vLine(z) = Left(vLine(z), InStr(vLine(z), ".") + 2) 

       Next 
       Cells(x, 1).Resize(1, UBound(vLine) + 1).Value = vLine 
       x = x + 1 
      End If 
     End If 
    Next 

End Sub 

Sub AdjustDates() 
    Dim x As Long 

    For x = 2 To Range("B" & Rows.Count).End(xlUp).row 
     If Cells(x, "R") = vbNullString Then Cells(x, "M").Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove 
    Next 

End Sub 

Function getTextfileData(FILENAME As Variant) As String 
    Const ForReading = 1 
    Dim fso, MyFile 
    Set fso = CreateObject("Scripting.FileSystemObject") 
    Set MyFile = fso.OpenTextFile(FILENAME, ForReading) 
    getTextfileData = MyFile.ReadAll 
    MyFile.Close 
End Function 
+0

托馬斯你很棒!非常感謝。這工作! – Anne

+0

嗨托馬斯,對不起,它的工作原理只是應該在描述中的一些數據將在「剩餘金額」欄中輸入 – Anne

+0

我更新了我的答案。 – 2016-11-10 12:55:32

0

Columns.EntireColumn.AutoFit之前添加該代碼。

Sub ProcessUsedRange() 
    Dim r As Range 
    Dim regex As Object, Match As Object 
    Set regex = CreateObject("VBScript.RegExp") 
    With regex 
     .Pattern = "\d{4}.\d{4}.\d{4}.\d{3}.\d{4}.\d{4}.\d{4}" 
     .Global = True 
    End With 

    For Each r In ActiveSheet.UsedRange 
     If regex.Test(r.Text) Then 
      For Each Match In regex.Execute(r.Value) 
       'The apostrophe is to keep the data formatted as text 
       r.Value = "'" & Replace(r.Value, Match.Value, "") 
      Next 
     End If 
    Next 
End Sub 

你也應該改變

MsgBox Err.Number & " " & Err.Description 

If Err.Number <> 0 then MsgBox Err.Number & " " & Err.Description 
+0

嗨托馬斯,你是一個很有魅力的人。但是,我嘗試了你的代碼。我需要的是省略這些額外的頭文件(那些不需要的頭文件)讓我將新代碼結合到你的頭文件中。但仍然沒有得到我所需要的。順便說一下,你的幫助非常感謝。謝謝。 – Anne

相關問題