ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 万分感激,有相同的word,需要提取相同的信息汇总到Excel中,好几天了不会啊

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-3-21 21:35 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
新建 Microsoft Excel 工作表.zip (4.21 KB, 下载次数: 11)       需要单表的各项比如 姓名 身份证号 性别等 汇总到EXCEL中

11.zip

79.81 KB, 下载次数: 18

单表

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-3-21 21:50 | 显示全部楼层
看到有老师这样帮助别人弄类似的文件,我实在看不懂,有老师能讲解下吗?
Sub test()
Dim i%, ar(1 To 60000, 1 To 20), ttt$, brr()
Dim wordApp As Object, myword As Object, t As Object
Application.ScreenUpdating = False
Set wordApp = CreateObject("Word.Application")
Set myword = wordApp.Documents.Open(ThisWorkbook.Path & "\全省项目排版1014.doc")
wordApp.Visible = 0
On Error Resume Next
ReDim brr(1 To myword.Tables.Count)
For Each t In myword.Tables
    If t.Rows.Count < 19 Then
        
        j = 0
        ttt = t.Cell(j + 1, 1).Range.Text
        Do While InStr(ttt, "名称") = 0
        j = j + 1
            ttt = t.Cell(j + 1, 1).Range.Text
            If j = 5 Then Exit Do
        Loop
        If j < 4 Then
        i = i + 1
            ar(i, 1) = t.Cell(1 + j, 2).Range.Text
            ar(i, 2) = t.Cell(2 + j, 2).Range.Text
            ar(i, 3) = t.Cell(3 + j, 3).Range.Text
            ar(i, 4) = t.Cell(3 + j, 5).Range.Text
            ar(i, 5) = t.Cell(4 + j, 3).Range.Text
            ar(i, 6) = t.Cell(5 + j, 3).Range.Text
            ar(i, 7) = t.Cell(6 + j, 3).Range.Text
            ar(i, 8) = t.Cell(6 + j, 5).Range.Text
            ar(i, 9) = t.Cell(7 + j, 3).Range.Text
            ar(i, 10) = t.Cell(8 + j, 3).Range.Text
            ar(i, 11) = t.Cell(9 + j, 3).Range.Text
            ar(i, 12) = t.Cell(9 + j, 5).Range.Text
            ar(i, 13) = t.Cell(10 + j, 3).Range.Text
            ar(i, 14) = t.Cell(11 + j, 3).Range.Text
            ar(i, 15) = t.Cell(12 + j, 2).Range.Text
            ar(i, 16) = t.Cell(13 + j, 2).Range.Text
            ar(i, 17) = t.Cell(14 + j, 3).Range.Text
            ar(i, 18) = t.Cell(14 + j, 5).Range.Text
            ar(i, 19) = t.Cell(15 + j, 3).Range.Text
            ar(i, 20) = t.Cell(15 + j, 5).Range.Text
        End If
    ElseIf t.Rows.Count > 18 Then
        For j = 1 To t.Rows.Count Step 18
            i = i + 1
            ar(i, 1) = t.Cell(1 + 3, 2).Range.Text
            ar(i, 2) = t.Cell(2 + 3, 2).Range.Text
            ar(i, 3) = t.Cell(3 + 3, 3).Range.Text
            ar(i, 4) = t.Cell(3 + 3, 5).Range.Text
            ar(i, 5) = t.Cell(4 + 3, 3).Range.Text
            ar(i, 6) = t.Cell(5 + 3, 3).Range.Text
            ar(i, 7) = t.Cell(6 + 3, 3).Range.Text
            ar(i, 8) = t.Cell(6 + 3, 5).Range.Text
            ar(i, 9) = t.Cell(7 + 3, 3).Range.Text
            ar(i, 10) = t.Cell(8 + 3, 3).Range.Text
            ar(i, 11) = t.Cell(9 + 3, 3).Range.Text
            ar(i, 12) = t.Cell(9 + 3, 5).Range.Text
            ar(i, 13) = t.Cell(10 + 3, 3).Range.Text
            ar(i, 14) = t.Cell(11 + 3, 3).Range.Text
            ar(i, 15) = t.Cell(12 + 3, 2).Range.Text
            ar(i, 16) = t.Cell(13 + 3, 2).Range.Text
            ar(i, 17) = t.Cell(14 + 3, 3).Range.Text
            ar(i, 18) = t.Cell(14 + 3, 5).Range.Text
            ar(i, 19) = t.Cell(15 + 3, 3).Range.Text
            ar(i, 20) = t.Cell(15 + 3, 5).Range.Text
        Next
    End If
Next
myword.Close False
wordApp.Quit
Set wordApp = Nothing
Set myword = Nothing
ActiveSheet.UsedRange.Offset(2).ClearContents
With [a3].Resize(i, 20)
.Value = ar
.Replace Chr(7), "", xlPart
End With
Application.ScreenUpdating = True
End Sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-3-22 11:12 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2015-3-22 22:39 | 显示全部楼层
gaochao815 发表于 2015-3-22 11:12
老师来指点下啊

加我一下吧  qq  1871960618

TA的精华主题

TA的得分主题

发表于 2015-3-31 16:21 | 显示全部楼层
先把需要收集数据的表格拆分出来,拆分成两个部分。然后点击另存为单个网页。记下这个网页的地址。这是第一步
打开excel,我用的2013版的,在数据下面有个自网站,点击自网站,然后在对话框里输入刚记下的网页地址。点击转到,打开要收集数据的表格,点击表格左上角的右方向箭头,将其选中,点击导入数据,然后就根据自己的要求进行调节了。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-16 08:09 , Processed in 0.023202 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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