ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
123
返回列表 发新帖
楼主: Will.li

[原创] 汇总多个excel文件的工具

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-10-20 08:59 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 ljch1327 于 2018-10-20 14:34 编辑

2003版本能否使用?或者請指點一下怎么修改﹖下面的代碼錯誤提示﹕找不到可安裝的ISAMSub Query()
    Dim strFile() As String '陣列變數,用於存儲資料原始檔案
    Dim lSource As Long '確認資料原始檔案的最後一行的行號
    Dim sql As String   '查詢語句
    Dim strField As String, Value   '條件參數的欄位名和值
    Dim strSourceFileName As String     '數據原始檔案
    Dim iCriteria As Integer    '確認查詢條件的個數
    Dim strCriteria As String   '查詢條件字串
    Dim strFlag As String, strOp As String  'sql語句中的識別字
    Dim RowOfHeader As Long '查詢結果起始行
    Dim lEndRow As Long '臨時存儲最後一行

    t = Timer '定義程式開始的時間

    RowOfHeader = 5 '查詢結果的標題所在的行號

    Application.ScreenUpdating = False

    On Error GoTo ErrHandler
    shDataSource.Activate
    lSource = shDataSource.Range("A65535").End(xlUp).Row
    '判斷是否有資料檔案
    If lSource = 1 Then
        MsgBox "Please select at least one file as data source!", vbOKOnly + vbExclamation, "Message"
        Exit Sub
    '判斷資料檔案列表是否連續
    ElseIf lSource > Application.WorksheetFunction.CountA(ActiveSheet.Columns("A:A")) Then
        MsgBox "Please make sure the data source list is consistent!", vbOKOnly + vbExclamation, "Message"
        Exit Sub
    End If

    ReDim strFile(1 To lSource - 1, 1 To 2)   '資料檔案列表
    For j = 1 To lSource - 1
        strFile(j, 1) = ThisWorkbook.ActiveSheet.Cells(j + 1, 1)
        strFile(j, 2) = ThisWorkbook.ActiveSheet.Cells(j + 1, 2)
    Next

    ShQuery.Activate
    iCriteria = ActiveSheet.[IV1].End(xlToLeft).Column  '確認最後一個條件的列號
    If iCriteria = 1 Then
        strCriteria = ""
    Else
        If iCriteria > Application.WorksheetFunction.CountA(ActiveSheet.Rows("1:1")) Then
            MsgBox "Please make sure the criteria range is consistent!", vbOKOnly + vbExclamation, "Message"
            Exit Sub
        End If

        strCriteria = " Where "
        For i = 2 To iCriteria
            strField = ActiveSheet.Cells(1, i)
            Value = ActiveSheet.Cells(2, i)
            If IsDate(ActiveSheet.Cells(2, i)) Then
                strFlag = "#"
                strOp = "="
            ElseIf IsNumeric(ActiveSheet.Cells(2, i)) Then
                strFlag = ""
                strOp = "="
            ElseIf Application.WorksheetFunction.IsText(ActiveSheet.Cells(2, i)) Then
                If Left(Value, 1) = ">" Or Left(Value, 1) = "=" Or Left(Value, 1) = "<" Then
                    strFlag = ""
                    strOp = ""
                ElseIf InStr(Value, "*") + InStr(Value, "?") > 0 Then
                    strFlag = "'"
                    strOp = " like "
                    Value = Replace(Replace(Value, "*", "%"), "?", "_")
                Else
                    strFlag = "'"
                    strOp = "="
                End If
            End If
            strCriteria = strCriteria & "[" & strField & "]" & strOp & strFlag & Value & strFlag & " and "
        Next
        strCriteria = Left(strCriteria, Len(strCriteria) - 5)
    End If

    Set cnn = CreateObject("adodb.connection")

    'cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;HDR=no;imex=1';Data Source=" & strFile(1, 1)
    cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;HDR=NO';Data Source=" & strFile(1, 1)
    sql = "select top 1 'Source',* from [" & strFile(1, 2) & "$]"

    ActiveSheet.Range("A" & RowOfHeader & ":iv65535").ClearContents

    '寫標題行
    ActiveSheet.Range("A" & RowOfHeader).CopyFromRecordset cnn.Execute(sql)
    cnn.Close

    'cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;HDR=yes;imex=1';Data Source=" & strFile(1, 1)'2007 until now
    cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;HDR=NO';Data Source=" & strFile(1, 1) '2003
    strSourceFileName = Mid(strFile(1, 1), InStrRev(strFile(1, 1), "\") + 1, Len(strFile(1, 1)) - InStrRev(strFile(1, 1), "\"))
    strSourceFileName = Left(strSourceFileName, InStr(strSourceFileName, ".") - 1)
    strSourceFileName = "[" & strSourceFileName & "]" & strFile(1, 2)

    Application.StatusBar = "正在讀取資料,請稍後..."
    sql = "select '" & strSourceFileName & "' as Source,* from [" & strFile(1, 2) & "$]" & strCriteria
    If lSource = 2 Then
        lEndRow = ActiveSheet.Range("A65535").End(xlUp).Row
        ActiveSheet.Range("A" & lEndRow + 1).CopyFromRecordset cnn.Execute(sql)
        cnn.Close
    Else
        For k = 2 To lSource - 1
            strSourceFileName = Mid(strFile(k, 1), InStrRev(strFile(k, 1), "\") + 1, Len(strFile(k, 1)) - InStrRev(strFile(k, 1), "\"))
            strSourceFileName = Left(strSourceFileName, InStr(strSourceFileName, ".") - 1)
            strSourceFileName = "[" & strSourceFileName & "]" & strFile(k, 2)
            sql = sql & " union all select '" & strSourceFileName & "' as Source, * from [Excel 12.0;Database=" & strFile(k, 1) & "].[" & strFile(k, 2) & "$]"

            '如果是EXCEL 12.0;錯誤提示﹕找不到可安裝的ISAM
            If (k Mod 49 = 0) Or (k = lSource - 1) Then
                sql = "select * from (" & sql & ")" & strCriteria
                lEndRow = ActiveSheet.Range("A65535").End(xlUp).Row
                ActiveSheet.Range("A" & lEndRow + 1).CopyFromRecordset cnn.Execute(sql)
                cnn.Close
                If k < lSource - 1 Then
                    'cnn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='Excel 12.0;HDR=yes;imex=1';Data Source=" & strFile(k + 1, 1) '2007 until now
                    cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties='Excel 8.0;HDR=NO';Data Source=" & strFile(k + 1, 1) '2003

                    strSourceFileName = Mid(strFile(k + 1, 1), InStrRev(strFile(k + 1, 1), "\") + 1, Len(strFile(k + 1, 1)) - InStrRev(strFile(k + 1, 1), "\"))
                    strSourceFileName = Left(strSourceFileName, InStr(strSourceFileName, ".") - 1)
                    strSourceFileName = "[" & strSourceFileName & "]" & strFile(k + 1, 2)
                    sql = "select '" & strSourceFileName & "' as Source,* from [" & strFile(k + 1, 2) & "$]"
                    k = k + 1
                End If
            End If
        Next
    End If
    Application.StatusBar = ""
    ActiveSheet.Cells(RowOfHeader + 1, 1).Select
    ActiveWindow.FreezePanes = True
    ActiveSheet.Rows(RowOfHeader & ":" & RowOfHeader).Select
    Selection.AutoFilter
    ActiveSheet.Cells(RowOfHeader + 1, 1).Select

    Application.ScreenUpdating = True

    tLen = Round(Timer - t, 0)

    MsgBox "已完成查詢,共查詢 " & lSource - 1 & " 個資料表,共讀取 " & ActiveSheet.Range("A65535").End(xlUp).Row - RowOfHeader & " 條記錄。" & vbCrLf & "程式共運行 " & IIf(tLen > 60, Int(tLen / 60) & "分" & IIf(tLen Mod 60 > 0, tLen Mod 60 & "秒。", ""), tLen & "秒。"), vbOKOnly + vbInformation, "Message"
    '& vbCrLf & "程式共運行 " & IIf(tLen > 60, Int(tLen / 60) & "分" & IIf(tLen Mod 60 > 0, tLen Mod 60 & "秒。", ""), tLen & "秒。")

ErrHandler:
    If Err.Number <> 0 Then
          '  MsgBox Err.Number
        MsgBox "發生錯誤!" & vbCrLf & "錯誤描述:" & Err.Description, vbOKOnly + vbCritical, "Error"
        Err.Clear
        Exit Sub
    End If
End Sub

TA的精华主题

TA的得分主题

发表于 2018-10-20 14:36 | 显示全部楼层
我的是的2003版本的office﹐該了版本后﹐錯誤提示﹕找不到可安裝的ISAM

TA的精华主题

TA的得分主题

发表于 2019-4-6 16:52 | 显示全部楼层
下来学习。。。。。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-16 21:31 , Processed in 0.032547 second(s), 6 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表