MS Word 2007 - 目标字数

发布于 2024-10-02 17:09:03 字数 115 浏览 0 评论 0原文

我想在 MS Word 2007 中设置每日或部分字数目标?

似乎只显示总字数,或所选文本的计数。但不是显示针对目标输入的当前单词的计数,例如 500(当前)/1500(最终),

谢谢

I would like to set a daily or partial word count target in MS Word 2007?

It seems that only a total word count is displayed, or a count for selected text. But not a count which displays current words typed against a target, e.g 500 (current)/1500 (final)

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗恋未遂 2024-10-09 17:09:03

我不知道有什么方法可以在状态栏中显示自定义变量,但您可以包含一个宏来显示您想要的任何内容。例子:

Sub Macro1()
'
' Macro1 Macro
'
Dim WordCount As Long
Dim myRange As Range

Set myRange = ActiveDocument.Range

WordCount = 500 - myRange.ComputeStatistics(wdStatisticWords)
MsgBox WordCount & " words left"

End Sub

I am not aware of any method to show customized variables in the status bar, but you may include a macro to show whatever you want. Example:

Sub Macro1()
'
' Macro1 Macro
'
Dim WordCount As Long
Dim myRange As Range

Set myRange = ActiveDocument.Range

WordCount = 500 - myRange.ComputeStatistics(wdStatisticWords)
MsgBox WordCount & " words left"

End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文