View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Sheeloo[_3_] Sheeloo[_3_] is offline
external usenet poster
 
Posts: 1,805
Default displaying comments

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

--
If you find this post helpful pl. choose "Yes"...


"JT" wrote:

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