我正在做vba项目。要求是将多个word文档内容合并到一个word文档中。它是由 ContentControl 标签来完成的。我已经创建了两个具有唯一内容控制标签 ID 的 word 文档。现在我需要构建将它们的内容合并为一个的逻辑。
Set WordDoc = WordApp.Documents.Open(FileName)
With WordApp.ActiveDocument
For i = 1 To .ContentControls.Count
Select Case .ContentControls(i).Tag
Case "cc1": strEnding = "st" -- word content including format and style
Case "cc2": strEnding = "nd"
Case "cc3": strEnding = "rd"
Case Else: strEnding = "th"
End Select
Next
End With
现在我想将所有数据(如果有表格也包括格式和样式)合并到一个文档中。
请建议我如何实现这一目标。