How to change the name of a reviewer in Word?

Solution 1:

It is possible to do this in the new XML-based .docx format used by Word 2007. A .docx file is actually a ZIP file containing the different components of the document, which you can gain access to by renaming the file from filename.docx to filename.zip.

To change the author of tracked changes, open the file word\document.xml in a text editor. The author of each insertion and deletion is specified by the w:author attribute of the corresponding <w:ins> or <w:del> element. Change it to whatever you want, save the file back to the ZIP archive, and rename the file back to filename.docx.

Comments work the same way, except that they're stored in the file word\comments.xml, in <w:comment> elements. You must change the values of both the w:author and w:initials attributes for each comment, or you may get unexpected results.

Understand that doing this is probably a bad idea. The spec suggests that changing the authors of revisions and comments shouldn't cause trouble with other parts of the document, but who knows whether that's true in all cases, and in any event it's pretty easy to make mistakes with these kinds of changes unless you're just doing simple global search/replace operations. If you still want to take the risk, be sure to create backups of everything first.

Solution 2:

If you really need to remove a user name for confidentially reasons, then you can do this:

  1. Save a second copy of the document, so you have a backup!
  2. Save a "before" copy with the user's changes all rejected, and the document metadata cleaned.
  3. Save an "after" copy with the user's changes all accepted, and the document metadata cleaned.
  4. Use "Compare Documents" to compare the two and thus regenerate the tracked changes. Compare Documents has a "label changes with" option that you can then set to any name you like.

However, this does not save comments. If there are just a few comments that are worthwhile, you could recreate them manually by copying and pasting the text.