![]() |
#1
|
|||
|
|||
![]()
Hi all,
I've been doing some searching and I can't seem to find an answer to this question. Yesterday, I made some edits to a document using the Track Changes feature. This was done on someone else's computer. Today, I am continuing to edit the document from my own computer. Yesterday's edits/comments, however, are showing up under the name of the person whose computer (and MS Office) I used (the edits I'm making now, of course, are showing up with my own name). My question is: Is there any way to go back and put my own name on those previous edits? I'm using Office 365 if that makes any difference... |
#2
|
||||
|
||||
![]()
The author name for a comment is determined by the User Name and Initials settings in the Options dialog box. (At least this was true for Word versions up to and including 2010; Word 2013 is a bit different.)
You can change the user name and initials for existing comments in the active document by using a macro: Code:
Sub ChangeCommentAuthorName() Dim c As Comment For Each c In ActiveDocument.Comments c.Initial = "MT" 'specify the initials you want c.Author = "Miss Theorist" 'specify the name you want Next c End Sub For assistance with installing the macro, see http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom Microsoft Word MVP Microsoft 365 apps for business Windows 11 Professional |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
I liked it when past events on my calender were faded out. | tcat | Outlook | 0 | 11-01-2013 08:35 AM |
Error: Input past end of file | tinfanide | Excel Programming | 2 | 06-11-2012 09:31 PM |
![]() |
farmboyjohn | Outlook | 1 | 07-29-2011 06:27 PM |
Can't see delegates calendar past next month. | enviroko | Outlook | 3 | 08-08-2010 01:10 PM |
Past Calendar Items Messed Up | kelnar | Outlook | 0 | 01-07-2009 09:10 AM |