我目前有一个 Normal.dot 宏,用于计算当前部分的字数:
Sub SectionWordCount()
Dim SectionWordCount As String
SectionWordCount = ActiveDocument.Sections _
(Selection.Information(wdActiveEndSectionNumber)). _
Range.ComputeStatistics(wdStatisticWords)
MsgBox "The current section has " & SectionWordCount & " words."
End Sub
是否可以将此宏链接到我文档中的“域代码”?或者使用任何其他形式的 VBA 巫术使这个计数出现在文档中?
我在 Windows 8 上使用 Word 2013。
再次感谢大家。