ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 大神,求助VBA代码!!! 将指定文件夹中所有工作薄某一列数据一对一的写入汇总表...

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-3-1 17:36 | 显示全部楼层 |阅读模式
需求:文件夹中有不同名称的工作薄(若干个),里面标题、内容相同,由于不是同一部门填写,案例中1,2,3工作薄G列有的空白,有的有数据,现需要将该文件夹中的所有工作薄中G列数据全部汇总到汇总表中,其余内容不变,让其成为一个完整的工作薄。简单说就是:一键将1,2,3工作薄中G列数据一对一的填写到汇总表中的G列。
PS:文件夹位置:C:\Users\admin\Desktop  ,工作薄中 《业务编号》 为唯一值

案例.rar

30.9 KB, 下载次数: 6

TA的精华主题

TA的得分主题

发表于 2023-3-1 18:03 | 显示全部楼层
Sub 批量汇总()
Application.ScreenUpdating = False
Dim d As Object
Set d = CreateObject("scripting.dictionary")
With ActiveSheet
    r = .Cells(Rows.Count, 1).End(xlUp).Row
    ar = .Range("a1:g" & r)
    For i = 2 To UBound(ar)
        If Trim(ar(i, 2)) <> "" Then
            d(Trim(ar(i, 2))) = i
        End If
    Next i
    lj = ThisWorkbook.Path & "\"
    f = Dir(lj & "\*.xls*")
    Do While f <> ""
        If f <> ThisWorkbook.Name Then
            Set wb = Workbooks.Open(lj & "\" & f, 0)
            With wb.Worksheets(1)
                rs = .Cells(Rows.Count, 1).End(xlUp).Row
                br = .Range("a1:g" & rs)
            End With
            For i = 2 To UBound(br)
                If Trim(br(i, 2)) <> "" And Trim(br(i, 7)) <> "" Then
                    xh = d(Trim(br(i, 2)))
                    If xh <> "" Then
                        ar(xh, 7) = br(i, 7)
                    End If
                End If
            Next i
            wb.Close False
        End If
    f = Dir
    Loop
     .Range("a1:g" & r) = ar
End With
Application.ScreenUpdating = True
MsgBox "批量汇总完毕!"
End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2023-3-1 18:04 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
image.png

TA的精华主题

TA的得分主题

发表于 2023-3-1 18:04 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2023-3-1 19:01 | 显示全部楼层
  1. Option Explicit
  2. Private Function GetSelectSQLString()
  3.     Dim filePath$, folderPath$, FileDialog
  4.    
  5.     Set FileDialog = Application.FileDialog(msoFileDialogFolderPicker)
  6.    
  7.     FileDialog.Title = "请选择数据文件夹"
  8.    
  9.     FileDialog.Show
  10.    
  11.     If FileDialog.SelectedItems.Count = 0 Then
  12.    
  13.         Set FileDialog = Nothing
  14.         
  15.         GetSelectSQLString = ""
  16.         
  17.         Exit Function
  18.     End If
  19.    
  20.     folderPath = FileDialog.SelectedItems(1)
  21.    
  22.     filePath = Dir(folderPath & "\*.xls*")
  23.    
  24.     Dim sqlDic As Object
  25.    
  26.     Set sqlDic = CreateObject("scripting.dictionary")
  27.    
  28.     While filePath <> ""
  29.    
  30.         sqlDic(filePath) = "select 借款人,业务编号,发放金额,发放日期,到期日期,余额,cdbl(预计收回金额) as 预计收回金额 From [excel 12.0;imex=1;database=" & folderPath & "" & filePath & "].[Sheet1$] where 预计收回金额 is not null"
  31.         
  32.         filePath = Dir()
  33.         
  34.     Wend
  35.    
  36.     GetSelectSQLString = Join(sqlDic.items, " union ")
  37.    
  38.     Set sqlDic = Nothing
  39.    
  40.     Set FileDialog = Nothing
  41. End Function


  42. Sub demo()

  43.     Dim conn As Object, rs As Object, sqlString$
  44.    
  45.     sqlString = GetSelectSQLString
  46.    
  47.     If InStr(sqlString, "select") < 0 Then Exit Sub
  48.    
  49.     Set conn = CreateObject("adodb.connection")
  50.    
  51.     Set rs = CreateObject("adodb.recordset")
  52.    
  53.     conn.Open "Provider=Microsoft.ACE.OLEDB.12.0;Extended Properties='excel 12.0;HDR=YES;imex=2';Data Source=" & ThisWorkbook.FullName
  54.    
  55.     '可以注释掉直接使用返回的SQL语句
  56.     sqlString = "select Summary.借款人,Summary.业务编号,Summary.发放金额,Summary.发放日期,Summary.到期日期,Summary.余额,temp.预计收回金额 From [Sheet1$] as Summary Left Join (" & sqlString & ") as temp on Summary.借款人=temp.借款人 and Summary.业务编号=temp.业务编号 and Summary.发放金额=temp.发放金额 and Summary.发放日期=temp.发放日期 and Summary.到期日期=temp.到期日期 and Summary.余额=temp.余额"
  57.    
  58.     rs.Open sqlString, conn
  59.    
  60.     ThisWorkbook.Worksheets(1).Range("a2").CopyFromRecordset rs
  61.    
  62.     Set rs = Nothing
  63.    
  64.     Set conn = Nothing
  65.    
  66. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2023-3-1 19:04 | 显示全部楼层
..............................附件

汇总.zip

40.12 KB, 下载次数: 6

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-3-2 08:25 | 显示全部楼层
3190496160 发表于 2023-3-1 18:03
Sub 批量汇总()
Application.ScreenUpdating = False
Dim d As Object

感谢大神的慷慨救助!

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-3-2 08:25 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

同样感谢大神的帮忙,辛苦,我还得向大神们学习!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 20:20 , Processed in 0.047676 second(s), 15 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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