View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Randall Arnold[_2_] Randall Arnold[_2_] is offline
external usenet poster
 
Posts: 17
Default Changing Author Name in an existing cell's comment

Bill, if I understand you right, I have the following line of code in one if
my subs and it works:

ThisWorkbook.BuiltinDocumentProperties("Author") =
ActiveSheet.Range("C7")

It can go the other way, as well.


Randall Arnold

"Bill" wrote in message
...
Is there way to change/remove the Author name(Property) of
an existing comment within a cell. VBA Help says you can
set or return the Author Property. Return the existing
name is no problem, it's the setting I having issues with.
I like to change the Author's name so the Excel Status Bar
consistently shows the same name (or no name) for all
cells that contain comments (example: Cell A1 Commented
by 'my company name').

Thanks
Bill