displaying comments

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

Comments usually display on the right. Is there a way to make a particular
comment display on the left? Thanks.
 
You mean when you hover the cursor over the cell with the comment...

When comment is visible SHOW|HIDE is set to SHOW then you can use the
following to position
(See http://www.contextures.com/xlcomments03.html#Reset for details)

Sub ResetComments()
Dim cmt As Comment
For Each cmt In ActiveSheet.Comments
cmt.Shape.Top = cmt.Parent.Top + 5
cmt.Shape.Left = _
cmt.Parent.Offset(0, 1).Left + 5
Next
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top