Changing the Author Names for All Comments

This post will guide you how to change the Author name of the cell comments  in Excel. How do I quickly change the author names for all comments in your current Worksheet. How to change the author name in existing comments in Excel.

Changing the Author Names for All Comments


Assuming that you have lots of comments in your current worksheet, and you want to change the author names for all existing comments in Excel. How to achieve it. You can write an Excel VBA Macro to achieve the result of changing the Author Names for all existing comments in your worksheet, You can do it as following steps:

#1 open your excel workbook and then click on “Visual Basic” command under DEVELOPER Tab, or just press “ALT+F11” shortcut.

Get the position of the nth using excel vba1

#2 then the “Visual Basic Editor” window will appear.

#3 click “Insert” ->”Module” to create a new module.

convert column number to letter3

#4 paste the below VBA code into the code window. Then clicking “Save” button.

change author name for comments7

Sub ChangeCommentAuthorName()
Dim oneSheet As Worksheet
Dim oneComment As Comment
Dim oldUser As String
Dim newUser As String
oldUser = InputBox(“please type the old user name that you want to change”, “Changing User Name”, Application.UserName)
newUser = InputBox(“Please type one New User Name”, “Changing User Name”, “”)
For Each oneSheet In Application.ActiveWorkbook.Worksheets
For Each oneComment In oneSheet.Comments
oneComment.Text (Replace(oneComment.Text, oldUser, newUser))
Next
Next
End Sub

#5 back to the current worksheet, then run the above excel macro. Click Run button.

change author name for comments3

#6 please type the old user name that you want to change, such as: gordon

change author name for comments4

#7 Please type one New User Name, such as: gordon1

change author name for comments5

#8 Let’s see the result:

change author name for comments2  change author name for comments6

 

Change the Default Author Name setting For Comments


You can also try to change the default Author Name setting for current workbook, just do the following steps:

#1 click File Tab, and select Options. And the Excel Options dialog will open.

change author name for comments1

#2 click General menu in the left of excel options dialog, and type one new user name in User name text box under Personalize your copy of Microsoft Office section. Click Ok button.

change author name for comments8

#3 when you insert a new comment in your worksheet, and the newly author name will be inserted.

change author name for comments2 change author name for comments6

 

Leave a Reply