首页 > 其他 > 详细

VBA 以文本格式打开DSV

时间:2014-05-14 22:32:26      阅读:492      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
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 = "test_1"
        .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
bubuko.com,布布扣

 

VBA 以文本格式打开DSV,布布扣,bubuko.com

VBA 以文本格式打开DSV

原文:http://www.cnblogs.com/yuzhengdong/p/3728667.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!