VBA 以文本格式打开DSV

Public Function GetDataFromDSV(fpath As String) As Collection
    Dim AllTextFormat(255) As Integer
    Dim i As Long
    For i = 0 To 255
       AllTextFormat(i) = xlTextFormat
    Next i
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    Application.Workbooks.Add
    With ActiveWorkbook.Sheets(1).QueryTables.Add(Connection:= _
        "TEXT;" & fpath, Destination:=Range("$A$1"))
        .Name = "target"
        .PreserveFormatting = True
        '.TextFilePlatform = 936 简体中文 932 JIS 65001 UTF-8
        .TextFileCommaDelimiter = True
        .TextFileColumnDataTypes = AllTextFormat
        .Refresh BackgroundQuery:=False
    End With
    
    With ActiveWorkbook.Sheets(1)
    '执行逻辑代码
    End With
    
    ActiveWorkbook.Close False
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
End Function

 

posted on 2014-05-14 21:08  鱼东鱼  阅读(498)  评论(0编辑  收藏  举报

导航