displaying comments

J

JT

Comments usually display on the right. Is there a way to make a particular
comment display on the left? Thanks.
 
S

Sheeloo

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
 
Top