Dim OrigName
Const CoName = "yourCompany"
Sub WBClose()
If Application.UserName = CoName Then
Application.UserName = OrigName
End if
End Sub
Sub WbOpen()
OrigName = Application.UserName
Application.UserName = CoName
End Sub
See also
http://www.contextures.com/xlcomments03.html
--
Steve
"KIM W" <(E-Mail Removed)> wrote in message
news:A90EAA3C-FB3A-44B4-9AC9-(E-Mail Removed)...
> I have learned that the Comment.Author is read-only. Is there any
> workaround
> or technique to alter the author? (This is the username name displayed
> at
> the bottom of Excel when a comment is opened.)
> We are finding that the stickiness of the name of the person who happened
> to
> create the comment is undesirable. Now that the workbook is "done", we'd
> like to loop through the hundreds of comments and make the author our
> company
> name.