ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

学生的学籍卡,都在一个WORD文件中,用VBA方法可以快速提取学生的各种信息到EXCEL...

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-9-10 16:54 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
学籍卡文件中是所有少于的学籍卡,每个学生一页。有快速方法提取相关信息到信息表中吗?希望高手指点。

信息表.zip

8.31 KB, 下载次数: 27

要实现的表

学生学籍卡 (1).zip

7.68 KB, 下载次数: 26

学籍卡中的表

TA的精华主题

TA的得分主题

发表于 2024-9-10 17:03 | 显示全部楼层
类似的案例很多,先搜索一下。

TA的精华主题

TA的得分主题

发表于 2024-9-10 17:16 | 显示全部楼层
  1. Sub test()
  2. Dim Rule, Rule2, N&, I&, R&, C&, Obj, S$
  3. Rule = Array(2, 2, 2, 4, 2, 6, 3, 2, 3, 6, 9, 2, 10, 2)
  4. Rule2 = Array(2, 2, 2, 3, 3, 2, 3, 3)
  5. R = 1
  6. With GetObject(ThisWorkbook.Path & "\学生学籍卡 (1).doc")
  7.   For Each Obj In .tables
  8.     C = 0: R = R + 1
  9.     For N = LBound(Rule) To UBound(Rule) Step 2
  10.       If N = UBound(Rule) - 1 Then
  11.         With Obj.cell(Rule(N), Rule(N + 1)).tables(1)
  12.           For I = LBound(Rule2) To UBound(Rule2) Step 2
  13.             S = .cell(Rule2(I), Rule2(I + 1)).Range.Text
  14.             C = C + 1: Cells(R, C).Value = Left(S, Len(S) - 2)
  15.           Next I
  16.         End With
  17.       Else
  18.         S = Obj.cell(Rule(N), Rule(N + 1)).Range.Text
  19.         C = C + 1: Cells(R, C).Value = Left(S, Len(S) - 2)
  20.       End If
  21.     Next N
  22.   Next Obj
  23.   .Saved = True
  24.   .Close
  25. End With
  26. Columns.AutoFit
  27. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2024-9-10 18:11 | 显示全部楼层
  1. Sub test()
  2.     Dim r%, i%, m%
  3.     Dim arr, brr()
  4.     Dim mypath$, myname$
  5.     Dim myapp As Object
  6.     Dim mydoc As Object
  7.     mypath = ThisWorkbook.Path & ""
  8.     myname = "学生学籍卡.doc"
  9.     If Dir(mypath & myname) = "" Then
  10.         MsgBox mypath & myname & "不存在!"
  11.         Exit Sub
  12.     End If
  13.     Set myapp = CreateObject("word.application")
  14.     Set mydoc = CreateObject("word.document")
  15.     myapp.Visible = True
  16.     Set mydoc = myapp.Documents.Open(Filename:=mypath & myname)
  17.     With mydoc
  18.         ReDim brr(1 To .tables.Count, 1 To 10)
  19.         For k = 1 To .tables.Count
  20.             With .tables(k)
  21.                 brr(k, 1) = Replace(.cell(2, 2).Range.Text, Chr(13) & Chr(7), Empty)
  22.                 brr(k, 2) = Replace(.cell(2, 4).Range.Text, Chr(13) & Chr(7), Empty)
  23.                 brr(k, 3) = Replace(.cell(2, 6).Range.Text, Chr(13) & Chr(7), Empty)
  24.                 brr(k, 4) = Replace(.cell(3, 2).Range.Text, Chr(13) & Chr(7), Empty)
  25.                 brr(k, 5) = Replace(.cell(3, 6).Range.Text, Chr(13) & Chr(7), Empty)
  26.                 brr(k, 6) = Replace(.cell(5, 2).Range.Text, Chr(13) & Chr(7), Empty)
  27.                 With .cell(10, 2).tables(1)
  28.                     For i = 2 To .Rows.Count
  29.                         x = 0
  30.                         Select Case Left(.cell(i, 1).Range.Text, 2)
  31.                             Case "父亲"
  32.                                 x = 7
  33.                             Case "母亲"
  34.                                 x = 9
  35.                         End Select
  36.                         If x <> 0 Then
  37.                             brr(k, x) = Replace(.cell(i, 2).Range.Text, Chr(13) & Chr(7), Empty)
  38.                             brr(k, x + 1) = Replace(.cell(i, 3).Range.Text, Chr(13) & Chr(7), Empty)
  39.                         End If
  40.                     Next
  41.                 End With
  42.             End With
  43.         Next
  44.     End With
  45.     mydoc.Close False
  46.     myapp.Quit
  47.     With Worksheets("sheet1")
  48.         .UsedRange.Offset(1, 0).Clear
  49.         .Range("a2").Resize(UBound(brr), UBound(brr, 2)) = brr
  50.     End With
  51.    
  52. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2024-9-10 18:12 | 显示全部楼层
练习。。。

学生学籍卡.rar

30.17 KB, 下载次数: 41

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-10 19:47 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助

感谢,下来我认真学习学习。

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-9-10 20:35 | 显示全部楼层
本帖最后由 liyongjin 于 2024-9-10 20:37 编辑

父母姓名电话有的互换了?怎么处理?

TA的精华主题

TA的得分主题

发表于 2024-9-10 21:35 | 显示全部楼层
liyongjin 发表于 2024-9-10 20:35
父母姓名电话有的互换了?怎么处理?

那就再做一次判断呗

TA的精华主题

TA的得分主题

发表于 2024-9-10 21:37 | 显示全部楼层
image.png   现在学籍卡里写个代码测试一下,各项内容所处的单元格序号,方便定位提取信息。   第38个是表中表,这个表可以直接根据行列索引去读取。

TA的精华主题

TA的得分主题

发表于 2024-9-10 21:50 | 显示全部楼层
不考虑效率 只考虑实现结果
  1. Sub GetData()
  2.     Set wb = Application.ThisWorkbook
  3.     Set sht = wb.Worksheets(1)
  4.     fd = wb.Path & ""
  5.     i = 1 '第一行是表头,数据从第二行开始
  6.     Set fs = CreateObject("Scripting.FileSystemObject").GetFolder(fd).Files
  7.     For Each f In fs
  8.         fn = f.Name
  9.         fp = f.Path
  10.         If fp Like "*学籍卡*.doc*" And Not fp Like "*~*" Then
  11.             Debug.Print fp
  12.             Set doc = GetObject(fp)
  13.             For Each tb In doc.tables
  14.                 i = i + 1
  15.                 s = tb.Range.Cells(3).Range.Text
  16.                 sht.Cells(i, 1).Value = Left(s, Len(s) - 2)
  17.                 s = tb.Range.Cells(5).Range.Text
  18.                 sht.Cells(i, 2).Value = Left(s, Len(s) - 2)
  19.                 s = tb.Range.Cells(7).Range.Text
  20.                 sht.Cells(i, 3).Value = Left(s, Len(s) - 2)
  21.                 s = tb.Range.Cells(10).Range.Text
  22.                 sht.Cells(i, 4).Value = Left(s, Len(s) - 2)
  23.                 s = tb.Range.Cells(14).Range.Text
  24.                 sht.Cells(i, 5).Value = Left(s, Len(s) - 2)
  25.                 s = tb.Range.Cells(28).Range.Text
  26.                 sht.Cells(i, 6).Value = Left(s, Len(s) - 2)
  27.                 Set tb2 = tb.Range.Cells(38).tables(1)
  28.                 If tb2.cell(2, 1).Range.Text Like "*父亲*" Then
  29.                     s = tb2.cell(2, 2).Range.Text
  30.                     sht.Cells(i, 7).Value = Left(s, Len(s) - 2)
  31.                     s = tb2.cell(2, 3).Range.Text
  32.                     sht.Cells(i, 8).Value = Left(s, Len(s) - 2)
  33.                     s = tb2.cell(3, 2).Range.Text
  34.                     sht.Cells(i, 9).Value = Left(s, Len(s) - 2)
  35.                     s = tb2.cell(3, 3).Range.Text
  36.                     sht.Cells(i, 10).Value = Left(s, Len(s) - 2)
  37.                 Else
  38.                     s = tb2.cell(2, 2).Range.Text
  39.                     sht.Cells(i, 9).Value = Left(s, Len(s) - 2)
  40.                     s = tb2.cell(2, 3).Range.Text
  41.                     sht.Cells(i, 10).Value = Left(s, Len(s) - 2)
  42.                     s = tb2.cell(3, 2).Range.Text
  43.                     sht.Cells(i, 7).Value = Left(s, Len(s) - 2)
  44.                     s = tb2.cell(3, 3).Range.Text
  45.                     sht.Cells(i, 8).Value = Left(s, Len(s) - 2)
  46.                 End If
  47.             Next tb
  48.             doc.Close False
  49.         End If
  50.     Next
  51. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-18 22:54 , Processed in 0.047813 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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