print comments with cell label or name

M

Mohammad

How can I print comments, at page end, with cell label or given name instead
of standard cell name like A1, C4 etc..?
Thank you
 
M

Mohammad

Jason,

Thank you for the link. It is very helpfull. However it did not answer my
question. I'll contact the owner of the link. Thanks again.
 
D

Debra Dalgleish

You can't change the built-in comment printing feature. Either use
programming, as shown at the link Jason provided, or go with the default
format.
 
D

David McRitchie

are you sure you looked at correct article::
http://www.contextures.com/xlcomments03.html#CopyToSheet
If it doesn't do what you want then indicate what you really wanted
or want to change. Perhaps you want also the label at the top of
the column that the cell is in and the label to the left of the row that
the cell is in as well. (untested)
.Cells(i, 5).Value = mycell.offset(-mycell.row+1).Value .Cells(i, 5).Value = mycell.offset(-mycell.column+1).Value"Mohammad"
 
M

Mohammad

David, CopyToSheet will help. I'll use it. I think I'll have to create
comment sheet and print it separatly. Thank you all.
 
Top