微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

替换 Word 模板中的单词

如何解决替换 Word 模板中的单词

我正在尝试用 Excel 工作表中的单元格替换 Word 文档中的字符串。

然后应将更新(但未保存)的 Word 文档的结果用作电子邮件的正文。

当我按下调试键时,它会突出显示 Replacement.Text = Samenstellen.Cells(15,2).Value

Sub sendMail()

Dim ol As outlook.application
Dim olm As Outlook.MailItem
Dim wd As Word.Application
Dim doc As Word.Document

Set ol = New outlook.application
Set olm = ol.CreateItem(olMailItem)
Set wd = New Word.Application

wd.Visible = True

Set doc = wd.Documents.Open("\\file-wpv01.office.intern\home$\jslagers\Desktop\offerte\TemplateofferteZiggo.docx")
 
With wd.Selection.Find
    .Text = "<<NAAMKLANT>>"
    .Replacement.Text = Samenstellen.Cells(15,2).Value
    .Execute Replace:=wdReplaceAll
End With

With olm
    .display
    .To = "mailhere"
    .Subject = "Offerte"

    Set Editor = .GetInspector.WordEditor
    Editor.Content.Paste
End With

End Sub

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。