ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 有条件批量替换word文件中的内容

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-12-18 15:14 | 显示全部楼层 |阅读模式
image.png

word文件:


image.png

批量修改word.zip

28.14 KB, 下载次数: 10

TA的精华主题

TA的得分主题

发表于 2024-12-18 15:50 | 显示全部楼层
Sub limonet()
    Dim Arr As Variant, Brr As Variant, i%
    Arr = Array("G1", "G2", "G3")
    Brr = Array(2002, 2005, 2007)
    For i = 0 To UBound(Arr)
        With Selection.Find
            .Text = Arr(i)
           .Execute
        End With
        Selection.MoveRight Unit:=wdCell, Count:=2
        Selection.TypeText Text:=Brr(i)
    Next i
End Sub

评分

2

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-12-18 15:51 | 显示全部楼层
selection.find
GIF 2024-12-18 15-49-47.gif

limonet.7z

23.93 KB, 下载次数: 8

评分

2

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-12-18 15:54 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-12-18 15:55 | 显示全部楼层
  1. Sub test()
  2.     Dim r%, i%
  3.     Dim arr, brr
  4.     Dim wordapp As Object
  5.     Dim worddoc As Object
  6.     Dim mypath$, myname$
  7.     Dim flg As Boolean
  8.     Dim d As Object
  9.     Set d = CreateObject("scripting.dictionary")
  10.     Application.ScreenUpdating = False
  11.     Application.DisplayAlerts = False
  12.     mypath = ThisWorkbook.Path & ""
  13.     myname = "word文件.docx"
  14.     If Dir(mypath & myname) = "" Then
  15.         MsgBox mypath & myname & "不存在!"
  16.         Exit Sub
  17.     End If
  18.     With Worksheets("sheet1")
  19.         r = .Cells(.Rows.Count, 1).End(xlUp).Row
  20.         If r = 1 Then
  21.             Exit Sub
  22.         End If
  23.         arr = .Range("a2:b" & r)
  24.         For i = 1 To UBound(arr)
  25.             d(arr(i, 1)) = arr(i, 2)
  26.         Next
  27.     End With
  28.     On Error Resume Next
  29.     Set wordapp = GetObject(, "word.application")
  30.     If Err Then
  31.         flg = True
  32.         Set wordapp = CreateObject("word.application")
  33.     End If
  34.     On Error GoTo 0
  35.     Set worddoc = wordapp.documents.Open(mypath & myname)
  36.     With worddoc
  37.         For i = 1 To .tables.Count
  38.             With .tables(i)
  39.                 xm = Replace(.cell(5, 2).Range.Text, Chr(13) & Chr(7), Empty)
  40.                 If d.exists(xm) Then
  41.                     .cell(5, 4).Range.Text = d(xm)
  42.                 End If
  43.             End With
  44.         Next
  45.         .Close True
  46.     End With
  47.     If flg Then
  48.         wordapp.Quit
  49.     End If
  50.     Application.ScreenUpdating = True
  51.     MsgBox "数据提取完毕!"
  52. End Sub


复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-12-18 15:56 | 显示全部楼层
详见附件。

批量修改word.rar

33.96 KB, 下载次数: 16

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2024-12-18 16:14 | 显示全部楼层

TA的精华主题

TA的得分主题

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

正是我想要的,感谢褚老师的无私奉献!

TA的精华主题

TA的得分主题

发表于 2024-12-18 17:01 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2024-12-18 18:46 | 显示全部楼层
Option Explicit
Sub test2()
Dim ar, i&, wdApp As Word.Application, strFileName$, strPath$, objTab As Word.Table

    strPath = ThisWorkbook.Path & "\"
    strFileName = strPath & "word文件.docx"
    If Dir(strFileName) = "" Then MsgBox "文件不存在,请检查!", vbExclamation: Exit Sub
   
    Application.ScreenUpdating = False
   
    ar = [A1].CurrentRegion.Value
    On Error Resume Next
    Set wdApp = GetObject(, "Word.Application")
    If Err <> 0 Then
        Set wdApp = New Word.Application
    End If
   
    With wdApp.Documents.Open(strFileName)
        For i = 2 To UBound(ar)
            For Each objTab In .Tables
                With objTab
                    If .Range.Cells(18).Range.Text = ar(i, 1) & Chr(13) & Chr(7) Then
                        .Range.Cells(20).Range.Text = ar(i, 2)
                        Exit For
                    End If
                End With
            Next
        Next i
        .Close True
    End With
   
    If Err <> 0 Then wdApp.Quit
    Set wdApp = Nothing
    Application.ScreenUpdating = True
    Beep
End Sub

评分

1

查看全部评分

您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-12-25 15:34 , Processed in 0.054811 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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