ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 不同工作簿比较

[复制链接]

TA的精华主题

TA的得分主题

发表于 2012-10-6 13:32 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
现有N个工作簿,“数据源”工作簿A列和B列对应有字母和数字,如果其他工作簿中的字母和“数据源”工作簿中字母相同,那么对应的数字为“数据源”工作簿中A列对应的数字。请查看附件。

比较.rar

6.57 KB, 下载次数: 28

TA的精华主题

TA的得分主题

发表于 2012-10-6 15:01 | 显示全部楼层
  1. Sub lqxs()
  2.     Dim Arr, myPath$, myName$, wb As Workbook, Arr1
  3.     Dim m&, funm$, i&, d
  4.     Application.ScreenUpdating = False
  5.     Set d = CreateObject("Scripting.Dictionary")
  6.     Set wb = ThisWorkbook
  7.     funm = wb.Name
  8.     Sheet1.Activate
  9.     Arr = [a1].CurrentRegion
  10.     myPath = ThisWorkbook.Path & ""
  11.     myName = Dir(myPath & "*.xls")
  12.     Do While myName <> "" And myName <> funm
  13.         With GetObject(myPath & myName)
  14.             Arr1 = .Sheets(1).Range("A1").CurrentRegion
  15.             .Close False
  16.         End With
  17.         For i = 1 To UBound(Arr1)
  18.             d(Arr1(i, 1)) = Arr1(i, 2)
  19.         Next
  20.         For i = 1 To UBound(Arr)
  21.             If d.exists(Arr(i, 1)) Then Cells(i, 2) = d(Arr(i, 1))
  22.         Next
  23.         myName = Dir
  24.     Loop
  25.     Application.ScreenUpdating = True
  26. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2012-10-6 15:03 | 显示全部楼层
请见附件。

比较表格.rar

9.57 KB, 下载次数: 26

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-10-6 16:20 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
谢谢大虾!

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-10-6 20:54 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
蓝大侠,这个附件有点不给力啊,能否抽时间再看看?Thank you in advance.
另外,我自己尝试写了个,但是实现不了,能否帮忙看看?谢谢
Sub test()
Dim myPath$, myFile$, wb As Workbook, d As Object, arr, brr, i%, j%
Set d = CreateObject("Scripting.dictionary")
myPath = ThisWorkbook.Path & "\"
myFile = Dir(myPath & "*xls")
Application.ScreenUpdating = False
Do While myFile <> ""
If myFile <> ThisWorkbook.Name Then
    Set wb = GetObject(myPath & myFile)
    arr = ThisWorkbook.Sheets("Sheet1").Range("A1:B" & ThisWorkbook.Sheets("Sheet1").Range("A65536").End(xlUp).Row)
    brr = wb.Sheets("Sheet1").Range("A1:B" & wb.Sheets("Sheet1").Range("A65536").End(xlUp).Row)
    For i = 1 To UBound(arr)
        d(arr(i, 1)) = d(arr(i, 1)) + arr(i, 2)
    Next i
    For j = 1 To UBound(brr)
        If d.exists(brr(j, 1)) Then
            wb.Sheets("Sheet1").Cells(j, "B").Value = d(brr(j, 1))
       End If
    Next j
wb.Close False
End If
myFile = Dir
Loop
Application.ScreenUpdating = True


End Sub

TA的精华主题

TA的得分主题

发表于 2012-10-6 22:12 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
短信收到,要求不清楚,N个工作簿却只上传了一个数据源,我的理解是罗列N-1个数据源和比较表格的A列数据都比,只写出相同的:
  1. Sub Macro1()
  2.     Dim cnn As Object, MyPath$, MyFile$, SQL$, m&, sh As Worksheet, s$
  3.     Application.ScreenUpdating = False
  4.     Set sh = ActiveSheet
  5.     s = "[Excel 8.0;hdr=no;Database=" & ThisWorkbook.FullName & "].[" & sh.Name & "$a1:a" & [a65536].End(xlUp).Row & "]"
  6.     sh.UsedRange.Offset(, 2).ClearContents
  7.     Set cnn = CreateObject("adodb.connection")
  8.     MyPath = ThisWorkbook.Path & ""
  9.     MyFile = Dir(MyPath & "*.xls")
  10.    
  11.     With sh
  12.         Do While Len(MyFile)
  13.             If MyFile <> ThisWorkbook.Name Then
  14.                 m = m + 2
  15.                 If m = 2 Then
  16.                     cnn.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;hdr=no';data source=" & MyPath & MyFile
  17.                     SQL = "select '" & Split(MyFile, ".")(0) & "工作簿',a.f2 from [Sheet1$] a right join " & s & " b on a.f1=b.f1"
  18.                 Else
  19.                     SQL = "select '" & Split(MyFile, ".")(0) & "工作簿',a.f2 from [Excel 8.0;hdr=no;Database=" & MyPath & MyFile & "].[Sheet1$] a right join " & s & " b on a.f1=b.f1"
  20.                 End If
  21.                 .Cells(1, m).CopyFromRecordset cnn.Execute(SQL)
  22.             End If
  23.             MyFile = Dir
  24.         Loop
  25.     End With
  26.     cnn.Close
  27.     Set cnn = Nothing
  28.     Application.ScreenUpdating = True
  29. End Sub

复制代码

TA的精华主题

TA的得分主题

发表于 2012-10-6 22:15 | 显示全部楼层
加了一个数据源2.xls作为比较,请看附件
比较.rar (20.86 KB, 下载次数: 29)

TA的精华主题

TA的得分主题

发表于 2012-10-6 22:38 | 显示全部楼层
再加上比较表格中不存在的,放到比较表格数据的下方,每比较一个工作簿,会输出3列数据:工作簿、A列数据、B列数据
  1. Sub Macro1()
  2.     Dim cnn As Object, MyPath$, MyFile$, SQL$, m&, sh As Worksheet, s$
  3.     Application.ScreenUpdating = False
  4.     Set sh = ActiveSheet
  5.     s = "[Excel 8.0;hdr=no;Database=" & ThisWorkbook.FullName & "].[" & sh.Name & "$a1:a" & [a65536].End(xlUp).Row & "]"
  6.     sh.UsedRange.Offset(, 2).ClearContents
  7.     Set cnn = CreateObject("adodb.connection")
  8.     MyPath = ThisWorkbook.Path & ""
  9.     MyFile = Dir(MyPath & "*.xls")
  10.     m = -1
  11.     With sh
  12.         Do While Len(MyFile)
  13.             If MyFile <> ThisWorkbook.Name Then
  14.                 m = m + 3
  15.                 If m = 2 Then
  16.                     cnn.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;hdr=no';data source=" & MyPath & MyFile
  17.                     SQL = "select '" & Split(MyFile, ".")(0) & "工作簿',a.* from [Sheet1$] a right join " & s & " b on a.f1=b.f1 union all " _
  18.                         & "select '" & Split(MyFile, ".")(0) & "工作簿',a.* from [Sheet1$] a left join " & s & " b on a.f1=b.f1 where b.f1 is null"
  19.                 Else
  20.                     SQL = "select '" & Split(MyFile, ".")(0) & "工作簿',a.* from [Excel 8.0;hdr=no;Database=" & MyPath & MyFile & "].[Sheet1$] a right join " & s & " b on a.f1=b.f1 union all " _
  21.                         & "select '" & Split(MyFile, ".")(0) & "工作簿',a.* from [Excel 8.0;hdr=no;Database=" & MyPath & MyFile & "].[Sheet1$] a left join " & s & " b on a.f1=b.f1 where b.f1 is null"
  22.                 End If
  23.                 .Cells(1, m).CopyFromRecordset cnn.Execute(SQL)
  24.             End If
  25.             MyFile = Dir
  26.         Loop
  27.     End With
  28.     cnn.Close
  29.     Set cnn = Nothing
  30.     Application.ScreenUpdating = True
  31. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2012-10-6 22:40 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
请看附件
比较2.rar (21.61 KB, 下载次数: 24)

TA的精华主题

TA的得分主题

 楼主| 发表于 2012-10-6 23:06 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-8 03:04 , Processed in 0.042872 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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