Thanks Gord,
I did misunderstand and made the correction. Unfortunately I hav
another issue. I had used this macro from the Contextures site and no
your code will not work:
Change the User Name
Instead of showing the user name at the start of a comment, you ca
change to something generic, such as "Note:" However, this chang
affects the User Name in all Microsoft Office programs, so you may wan
to reset the name before you exit Excel.
To set a generic label:
Sub CommentNote()
Application.UserName = "Note"
End Sub
To reset the User Name:
Sub CommentName()
Application.UserName= "John Smith"
End Sub
Whenever I select "Insert Comment" I still get the just the "Note
showing as described in the above code. When I followed the above cod
I did not reset my User Name and that code has reset my User Name in al
my Office programs. Now I don't know how to reverse the process. Is i
even necessary? It seems to me it is only because I can't get the cod
you sent to work. All I was wanting to do was to have the code yo
sent to function in Excel only. The previous code (above) affects al
Office prgs. If I can resolve this last issue it will make my day!
Thanks for all your input and time. I don't know what I'd do withou
this forum and without your help.
K