ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[已解决] 关于多个Word文件中表格内容批量导入Excel的问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2021-8-12 08:02 | 显示全部楼层 |阅读模式
本帖最后由 xykoo 于 2021-8-12 11:05 编辑

如何将WORD里面的各字段提取到新建EXCEL里?由于每个人都是一张表,人工操作费时费力。请求高手们帮助,谢谢。

请求高手写个宏帮助下.rar

32.23 KB, 下载次数: 9

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-8-12 08:04 | 显示全部楼层
求助

WORD图

WORD图

自动生成EXCEL最终样式

自动生成EXCEL最终样式

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-8-12 09:09 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2021-8-12 11:03 | 显示全部楼层
Sub 从word到excl()
Application.ScreenUpdating = False
    Dim i%, myPath$, wdApp, wdD
    Dim arr()
    Dim oFso
    Set oFso = CreateObject("Scripting.FileSystemObject")
    Dim d As Object
    Set d = CreateObject("scripting.dictionary")
    myPath = ThisWorkbook.Path & "\"
    Set wdApp = CreateObject("word.application")
    wdApp.Visible = True
    ReDim arr(1 To 500, 1 To 19)
    f = Dir(myPath & "*.doc*")
    Do While f <> ""
        Set wdD = wdApp.Documents.Open(myPath & f)
        n = n + 1
        With wdD.Tables(1)
            arr(n, 1) = n
            arr(n, 2) = .cell(1, 2).Range.Text
            arr(n, 3) = .cell(1, 4).Range.Text
            arr(n, 4) = .cell(1, 6).Range.Text
            arr(n, 5) = .cell(1, 8).Range.Text
            arr(n, 6) = .cell(2, 2).Range.Text
            arr(n, 7) = .cell(3, 3).Range.Text
            arr(n, 8) = .cell(3, 5).Range.Text
            arr(n, 9) = .cell(3, 7).Range.Text
            arr(n, 10) = .cell(4, 3).Range.Text
            arr(n, 11) = .cell(5, 3).Range.Text
            arr(n, 12) = .cell(4, 5).Range.Text
            arr(n, 13) = .cell(5, 5).Range.Text
            arr(n, 14) = .cell(6, 3).Range.Text
            arr(n, 15) = .cell(7, 3).Range.Text
            arr(n, 16) = .cell(6, 5).Range.Text
            arr(n, 17) = .cell(7, 5).Range.Text
            arr(n, 18) = .cell(8, 3).Range.Text
            arr(n, 19) = .cell(9, 3).Range.Text
        End With
        wdD.Close True
    f = Dir
    Loop
    wdApp.Quit
    With Sheet1
        .[a1].CurrentRegion.Offset(1) = Empty
        .[a2].Resize(n, 19) = arr
    End With
    Set wdD = Nothing
    Set wdApp = Nothing
Application.ScreenUpdating = False
    MsgBox "ok!"
End Sub


TA的精华主题

TA的得分主题

发表于 2021-8-12 11:03 | 显示全部楼层
仅供参考
请求高手写个宏帮助下.rar (47.19 KB, 下载次数: 33)

TA的精华主题

TA的得分主题

 楼主| 发表于 2021-8-12 11:05 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-6 14:15 , Processed in 0.022028 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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