ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 如何提取word文档中多个简历信息至excel汇总表

[复制链接]

TA的精华主题

TA的得分主题

发表于 2016-7-27 06:15 | 显示全部楼层 |阅读模式
本帖最后由 lsc900707 于 2016-7-27 08:08 编辑

如何使用VBA提取附件word文档中多个简历信息至excel汇总表,如姓名、性别、身份证号码、工作经历、家庭成员信息等,其中工作经历及家庭成员信息批量汇总至相应单元格中(详见附件),请各位老师帮忙~谢谢~

简历信息汇总.rar

33.45 KB, 下载次数: 443

TA的精华主题

TA的得分主题

发表于 2016-7-27 09:10 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 182197315 于 2016-7-27 09:25 编辑

Sub 汇总()
[A2:AI250].ClearContents
    Application.ScreenUpdating = False
    Dim cPath$, cFile$, str$, i%, arr(1 To 500, 1 To 16)
    Dim wordD As Word.Document
    Dim wordapp As Object
    cPath = ThisWorkbook.Path & "\"
    cFile = Dir(cPath & "*.doc?")
    Set wordapp = CreateObject("Word.Application")
    Do While cFile <> ""
        Set wordD = wordapp.Documents.Open(cPath & cFile)
        i = i + 1
        With wordD.Tables(1)
            arr(i, 2) = Replace(.Cell(2, 2).Range.Text, Chr(7), "")
            arr(i, 3) = Replace(.Cell(2, 4).Range.Text, Chr(7), "")
            arr(i, 4) = Replace(.Cell(2, 6).Range.Text, Chr(7), "")
            arr(i, 5) = Replace(.Cell(3, 2).Range.Text, Chr(7), "")
            arr(i, 6) = Replace(.Cell(3, 4).Range.Text, Chr(7), "")
            arr(i, 7) = Replace(.Cell(3, 6).Range.Text, Chr(7), "")
            arr(i, 8) = Replace(.Cell(4, 2).Range.Text, Chr(7), "")
            arr(i, 9) = Replace(.Cell(4, 4).Range.Text, Chr(7), "")
            arr(i, 10) = Replace(.Cell(5, 2).Range.Text, Chr(7), "")
            arr(i, 11) = Replace(.Cell(5, 4).Range.Text, Chr(7), "")
            arr(i, 12) = Replace(.Cell(6, 3).Range.Text, Chr(7), "")
            arr(i, 13) = Replace(.Cell(6, 5).Range.Text, Chr(7), "")
            arr(i, 14) = Replace(.Cell(7, 3).Range.Text, Chr(7), "")
            arr(i, 15) = Replace(.Cell(7, 5).Range.Text, Chr(7), "")

        End With
        wordD.Close
        cFile = Dir
    Loop
    Set wordD = Nothing
    wordapp.Quit
    Me.Range("A2").Resize(i, 35) = arr
    Application.ScreenUpdating = true
End Sub

楼主接着写吧,眼睛都看花了

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-7-27 09:16 | 显示全部楼层
182197315 发表于 2016-7-27 09:10
Sub 汇总()
[A2:AI250].ClearContents
    Application.ScreenUpdating = False

先行谢过。我试试看。

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-7-27 10:42 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
本帖最后由 lsc900707 于 2016-7-27 10:44 编辑
182197315 发表于 2016-7-27 09:10
Sub 汇总()
[A2:AI250].ClearContents
    Application.ScreenUpdating = False

Sub 汇总()
[A2:AI250].ClearContents
     Application.ScreenUpdating = False
     Dim cPath$, cFile$, str$, i%, arr(1 To 500, 1 To 35)
     Dim wordD As Word.Document
     Dim wordapp As Object
     cPath = ThisWorkbook.Path & "\"
     cFile = Dir(cPath & "*.doc?")
     Set wordapp = CreateObject("Word.Application")
     Do While cFile <> ""
         Set wordD = wordapp.Documents.Open(cPath & cFile)
         i = i + 1
         With wordD.Tables(1)
            arr(i, 2) = Replace(.Cell(2, 2).Range.Text, Chr(7), "")
             arr(i, 3) = Replace(.Cell(2, 4).Range.Text, Chr(7), "")
             arr(i, 4) = Replace(.Cell(2, 6).Range.Text, Chr(7), "")
             arr(i, 5) = Replace(.Cell(3, 2).Range.Text, Chr(7), "")
             arr(i, 6) = Replace(.Cell(3, 4).Range.Text, Chr(7), "")
             arr(i, 7) = Replace(.Cell(3, 6).Range.Text, Chr(7), "")
             arr(i, 8) = Replace(.Cell(4, 2).Range.Text, Chr(7), "")
             arr(i, 9) = Replace(.Cell(4, 4).Range.Text, Chr(7), "")
             arr(i, 10) = Replace(.Cell(5, 2).Range.Text, Chr(7), "")
             arr(i, 11) = Replace(.Cell(5, 4).Range.Text, Chr(7), "")
             arr(i, 12) = Replace(.Cell(6, 3).Range.Text, Chr(7), "")
             arr(i, 13) = Replace(.Cell(6, 5).Range.Text, Chr(7), "")
             arr(i, 14) = Replace(.Cell(7, 3).Range.Text, Chr(7), "")
             arr(i, 15) = Replace(.Cell(7, 5).Range.Text, Chr(7), "")
             arr(i, 16) = Replace(.Cell(8, 2).Range.Text, Chr(7), "")
             arr(i, 17) = Replace(.Cell(8, 4).Range.Text, Chr(7), "")
             arr(i, 18) = Replace(.Cell(9, 2).Range.Text, Chr(7), "")
             arr(i, 19) = Replace(.Cell(9, 4).Range.Text, Chr(7), "")
             arr(i, 20) = Replace(.Cell(9, 6).Range.Text, Chr(7), "")
             arr(i, 21) = Replace(.Cell(10, 2).Range.Text, Chr(7), "")
             arr(i, 22) = Replace(.Cell(13, 2).Range.Text, Chr(7), "")
             arr(i, 23) = Replace(.Cell(13, 3).Range.Text, Chr(7), "")
             arr(i, 24) = Replace(.Cell(14, 2).Range.Text, Chr(7), "")
             arr(i, 25) = Replace(.Cell(14, 3).Range.Text, Chr(7), "")
             arr(i, 26) = Replace(.Cell(14, 4).Range.Text, Chr(7), "")
             arr(i, 27) = Replace(.Cell(15, 2).Range.Text, Chr(7), "")
             arr(i, 28) = Replace(.Cell(15, 3).Range.Text, Chr(7), "")
            arr(i, 29) = Replace(.Cell(15, 4).Range.Text, Chr(7), "")
             arr(i, 30) = Replace(.Cell(16, 2).Range.Text, Chr(7), "")
           arr(i, 31) = Replace(.Cell(16, 3).Range.Text, Chr(7), "")
           arr(i, 32) = Replace(.Cell(16, 4).Range.Text, Chr(7), "")
           arr(i, 33) = Replace(.Cell(19, 1).Range.Text, Chr(7), "") & Replace(.Cell(19, 2).Range.Text, Chr(7), "") _
              & Replace(.Cell(19, 3).Range.Text, Chr(7), "") & Replace(.Cell(19, 4).Range.Text, Chr(7), "") & Chr(13) _
             & Replace(.Cell(20, 1).Range.Text, Chr(7), "") & Replace(.Cell(20, 2).Range.Text, Chr(7), "") _
              & Replace(.Cell(20, 3).Range.Text, Chr(7), "") & Replace(.Cell(20, 4).Range.Text, Chr(7), "")
           arr(i, 34) = Replace(.Cell(23, 1).Range.Text, Chr(7), "") & Replace(.Cell(23, 2).Range.Text, Chr(7), "") _
              & Replace(.Cell(23, 3).Range.Text, Chr(7), "") & Replace(.Cell(23, 4).Range.Text, Chr(7), "") _
             & Replace(.Cell(23, 5).Range.Text, Chr(7), "") & Replace(.Cell(23, 6).Range.Text, Chr(7), "") & Chr(13) _
             & Replace(.Cell(24, 1).Range.Text, Chr(7), "") & Replace(.Cell(24, 2).Range.Text, Chr(7), "") _
              & Replace(.Cell(24, 3).Range.Text, Chr(7), "") & Replace(.Cell(24, 4).Range.Text, Chr(7), "") _
            & Replace(.Cell(24, 5).Range.Text, Chr(7), "") & Replace(.Cell(24, 6).Range.Text, Chr(7), "")
            arr(i, 35) = Replace(.Cell(29, 1).Range.Text, Chr(7), "")
           
         End With
         wordD.Close
         cFile = Dir
     Loop
     Set wordD = Nothing
     wordapp.Quit
     Sheet1.Range("A2").Resize(i, 35) = arr
     Application.ScreenUpdating = True
End Sub
亲,终于依样画葫芦画出来了,但是为什么只有第一个的信息?还有33和34列可以简化代码吗?

TA的精华主题

TA的得分主题

发表于 2016-7-27 12:47 | 显示全部楼层
本帖最后由 182197315 于 2016-7-27 15:35 编辑

Sub 汇总()
    [A2:AI250].ClearContents
    Application.ScreenUpdating = False
    Dim myFile$, i%, arr(1 To 500, 1 To 35)
    Dim wordD As Word.Document
    Dim Wordapp As Object
    Set Wordapp = CreateObject("Word.Application")
    myFile = ThisWorkbook.Path & "\" & "简历信息表.docx"
    Set wordD = Wordapp.Documents.Open(myFile)
        For i = 1 To wordD.Tables.Count
            With wordD.Tables(i)
                arr(i, 2) = Replace(.Cell(2, 2).Range.Text, Chr(7), "")
                arr(i, 3) = Replace(.Cell(2, 4).Range.Text, Chr(7), "")
                arr(i, 4) = Replace(.Cell(2, 6).Range.Text, Chr(7), "")
                arr(i, 5) = Replace(.Cell(3, 2).Range.Text, Chr(7), "")
                arr(i, 6) = Replace(.Cell(3, 4).Range.Text, Chr(7), "")
                arr(i, 7) = Replace(.Cell(3, 6).Range.Text, Chr(7), "")
                arr(i, 8) = Replace(.Cell(4, 2).Range.Text, Chr(7), "")
                arr(i, 9) = Replace(.Cell(4, 4).Range.Text, Chr(7), "")
                arr(i, 10) = Replace(.Cell(5, 2).Range.Text, Chr(7), "")
                arr(i, 11) = Replace(.Cell(5, 4).Range.Text, Chr(7), "")
                arr(i, 12) = Replace(.Cell(6, 3).Range.Text, Chr(7), "")
                arr(i, 13) = Replace(.Cell(6, 5).Range.Text, Chr(7), "")
                arr(i, 14) = Replace(.Cell(7, 3).Range.Text, Chr(7), "")
                arr(i, 15) = Replace(.Cell(7, 5).Range.Text, Chr(7), "")
            End With
        Next
    wordD.Close
    Set wordD = Nothing
    Wordapp.Quit
    Me.Range("A2").Resize(i, 35) = arr
    Application.ScreenUpdating = True
End Sub

              

干嘛把这多简历放在一个word文档里,分开放多好

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-7-27 12:55 | 显示全部楼层
182197315 发表于 2016-7-27 12:47
Sub 汇总()
    [A2:AI250].ClearContents
    Application.ScreenUpdating = False

呃,我懂了,要一个简历一个簿。我只是刚学这个题,想练练。

TA的精华主题

TA的得分主题

发表于 2016-7-27 12:59 | 显示全部楼层
lsc900707 发表于 2016-7-27 12:55
呃,我懂了,要一个简历一个簿。我只是刚学这个题,想练练。

家庭成员有多有少,表格格式会变掉的。

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-7-27 13:30 | 显示全部楼层
本帖最后由 lsc900707 于 2016-7-27 13:31 编辑
jiminyanyan 发表于 2016-7-27 12:59
家庭成员有多有少,表格格式会变掉的。

谢谢,我正在处理这个问题,表格不规范的话,就出问题了。
害得我必须加上防错语句。
大神,33列和34列有没有更简洁的代码?

TA的精华主题

TA的得分主题

发表于 2016-7-27 13:38 | 显示全部楼层
lsc900707 发表于 2016-7-27 12:55
呃,我懂了,要一个简历一个簿。我只是刚学这个题,想练练。

一个文档装一个简历,符合习惯,汇总起来也省事

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-7-27 13:47 | 显示全部楼层
182197315 发表于 2016-7-27 13:38
一个文档装一个简历,符合习惯,汇总起来也省事

谢谢!看来我刚学习这个课题就挑了个“刺”!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 07:33 , Processed in 0.044411 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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