如何更改Microsoft Word中的注释首字母?
我尝试了以下内容,它只是更改了新评论,现有评论无法更改。
选项 - >初始名称 - >已更改 - >已保存 - >重新启动Docx
答案 0 :(得分:2)
我引用了此链接https://superuser.com/questions/208153/renaming-the-initials-in-word-comments并使用了提供的宏选项和代码。它起作用了:))
Sub ChangeInitialsAndAuthor()
For Each MyComment In ActiveDocument.Comments
If MyComment.Initial = "old" Then MyComment.Initial = "new"
Next
End Sub
old
更改为旧的姓名首字母,将new
更改为新的姓名首字母答案 1 :(得分:0)