ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[已解决] 把同一个文件夹下的不同工作簿汇总到一个工作簿里

[复制链接]

TA的精华主题

TA的得分主题

发表于 2022-7-7 14:54 | 显示全部楼层 |阅读模式
本帖最后由 熊文来 于 2022-7-8 20:32 编辑

麻烦走过路过的朋友帮忙看看我这问题。



把文件下的每个分表里的内容全部汇总到汇总表里。


汇总不同工作簿.zip

38.16 KB, 下载次数: 35

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:25 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 chxw68 于 2022-7-7 20:30 编辑
  1. 代码有错。
复制代码

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:26 | 显示全部楼层
本帖最后由 chxw68 于 2022-7-7 20:30 编辑

代码有错。

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:51 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:53 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:53 | 显示全部楼层
chxw68 发表于 2022-7-7 15:26
感觉这么简单的问题楼主自己应该会。

纵观熊老师的所有发贴,基本上确认应该是一名教师,可能平时教学时间长,没有时间在论坛上学习,都是些发贴求助,求助解决平时工作有关的内容。有时间的话,应该帮忙解决工作上的难题,可以让熊老师多出点时间来花在孩子身上。

TA的精华主题

TA的得分主题

发表于 2022-7-7 15:57 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
你试一下吧。

QQ图片20220707155544.png
QQ图片20220707155523.png

汇总不同工作簿.zip

54.98 KB, 下载次数: 48

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2022-7-7 16:07 | 显示全部楼层
Sub open_file()

Dim fso, folder1, files As Object

Dim wb As Workbook


Set fso = CreateObject("scripting.filesystemobject")

folderpath = ThisWorkbook.Path

MsgBox folderpath

Set folder1 = fso.getfolder(folderpath)

Set files = folder1.files

For Each file In files

    If Split(file.Name, ".")(0) <> Split(ThisWorkbook.Name, ".")(0) And Split(file.Name, ".")(1) <> "xlsm" Then
   
        Set wb = Workbooks.Open(folderpath & "/" & file.Name)
        
        irow = ThisWorkbook.Sheets(1).Range("a65536").End(3).Row + 1
        
        With ThisWorkbook.Sheets(1)
            
           .Cells(irow, 1).Value = Split(wb.Sheets(1).Cells(2, 7), ":")(1)
           .Cells(irow, 2).Value = wb.Sheets(1).Cells(4, 1)
           .Cells(irow, 3).Value = wb.Sheets(1).Cells(4, 4)
           .Cells(irow, 4).Value = wb.Sheets(1).Cells(4, 5)
           .Cells(irow, 5).Value = wb.Sheets(1).Cells(4, 6)
           .Cells(irow, 6).Value = wb.Sheets(1).Cells(4, 7)
           .Cells(irow, 7).Value = wb.Sheets(1).Cells(4, 8)
           .Cells(irow, 8).Value = wb.Sheets(1).Cells(6, 1)
           .Cells(irow, 9).Value = wb.Sheets(1).Cells(6, 4)
           .Cells(irow, 10).Value = wb.Sheets(1).Cells(6, 6)
           .Cells(irow, 11).Value = wb.Sheets(1).Cells(6, 7)
           .Cells(irow, 12).Value = wb.Sheets(1).Cells(6, 8)
           .Cells(irow, 13).Value = wb.Sheets(1).Cells(8, 2)
           .Cells(irow, 14).Value = wb.Sheets(1).Cells(8, 4)
           .Cells(irow, 15).Value = wb.Sheets(1).Cells(8, 5)
           .Cells(irow, 16).Value = wb.Sheets(1).Cells(8, 7)
           .Cells(irow, 17).Value = wb.Sheets(1).Cells(8, 8)
           .Cells(irow, 18).Value = wb.Sheets(1).Cells(9, 2)
           .Cells(irow, 19).Value = wb.Sheets(1).Cells(9, 4)
           .Cells(irow, 20).Value = wb.Sheets(1).Cells(9, 5)
           .Cells(irow, 21).Value = wb.Sheets(1).Cells(9, 7)
           .Cells(irow, 22).Value = wb.Sheets(1).Cells(9, 8)
           .Cells(irow, 23).Value = wb.Sheets(1).Cells(10, 2)
           .Cells(irow, 24).Value = wb.Sheets(1).Cells(10, 4)
           .Cells(irow, 25).Value = wb.Sheets(1).Cells(10, 5)
           .Cells(irow, 26).Value = wb.Sheets(1).Cells(10, 7)
           .Cells(irow, 27).Value = wb.Sheets(1).Cells(10, 8)
        
            wb.Close
            
        End With

    End If

Next

End Sub

TA的精华主题

TA的得分主题

发表于 2022-7-7 16:08 | 显示全部楼层
Sub open_file()

Dim fso, folder1, files As Object

Dim wb As Workbook


Set fso = CreateObject("scripting.filesystemobject")

folderpath = ThisWorkbook.Path

MsgBox folderpath

Set folder1 = fso.getfolder(folderpath)

Set files = folder1.files

For Each file In files

    If Split(file.Name, ".")(0) <> Split(ThisWorkbook.Name, ".")(0) And Split(file.Name, ".")(1) <> "xlsm" Then
   
        Set wb = Workbooks.Open(folderpath & "/" & file.Name)
        
        irow = ThisWorkbook.Sheets(1).Range("a65536").End(3).Row + 1
        
        With ThisWorkbook.Sheets(1)
            
           .Cells(irow, 1).Value = Split(wb.Sheets(1).Cells(2, 7), ":")(1)
           .Cells(irow, 2).Value = wb.Sheets(1).Cells(4, 1)
           .Cells(irow, 3).Value = wb.Sheets(1).Cells(4, 4)
           .Cells(irow, 4).Value = wb.Sheets(1).Cells(4, 5)
           .Cells(irow, 5).Value = wb.Sheets(1).Cells(4, 6)
           .Cells(irow, 6).Value = wb.Sheets(1).Cells(4, 7)
           .Cells(irow, 7).Value = wb.Sheets(1).Cells(4, 8)
           .Cells(irow, 8).Value = wb.Sheets(1).Cells(6, 1)
           .Cells(irow, 9).Value = wb.Sheets(1).Cells(6, 4)
           .Cells(irow, 10).Value = wb.Sheets(1).Cells(6, 6)
           .Cells(irow, 11).Value = wb.Sheets(1).Cells(6, 7)
           .Cells(irow, 12).Value = wb.Sheets(1).Cells(6, 8)
           .Cells(irow, 13).Value = wb.Sheets(1).Cells(8, 2)
           .Cells(irow, 14).Value = wb.Sheets(1).Cells(8, 4)
           .Cells(irow, 15).Value = wb.Sheets(1).Cells(8, 5)
           .Cells(irow, 16).Value = wb.Sheets(1).Cells(8, 7)
           .Cells(irow, 17).Value = wb.Sheets(1).Cells(8, 8)
           .Cells(irow, 18).Value = wb.Sheets(1).Cells(9, 2)
           .Cells(irow, 19).Value = wb.Sheets(1).Cells(9, 4)
           .Cells(irow, 20).Value = wb.Sheets(1).Cells(9, 5)
           .Cells(irow, 21).Value = wb.Sheets(1).Cells(9, 7)
           .Cells(irow, 22).Value = wb.Sheets(1).Cells(9, 8)
           .Cells(irow, 23).Value = wb.Sheets(1).Cells(10, 2)
           .Cells(irow, 24).Value = wb.Sheets(1).Cells(10, 4)
           .Cells(irow, 25).Value = wb.Sheets(1).Cells(10, 5)
           .Cells(irow, 26).Value = wb.Sheets(1).Cells(10, 7)
           .Cells(irow, 27).Value = wb.Sheets(1).Cells(10, 8)
        
            wb.Close
            
        End With

    End If

Next

End Sub

评分

1

查看全部评分

TA的精华主题

TA的得分主题

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

谢谢您的帮助!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 11:29 , Processed in 0.043047 second(s), 16 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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