Comments

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

I have several thousand rows and some cells have comments in them and every
time I edit anything it drop or raises all my comments, I have Excel 2002,
what can I do about
this?

Richard
 
Hi there.

Hope the following helps;;;

On the menu on top select TOOLS, then move down to select OPTIONS and in the
next window that pops up select the VIEW tab, under comments check the small
radio button named NONE. click ok
 
Not sure what you're describing or expecting for a solution but maybe
re-position Comments to default?

This from Debra Dalgleish.


Reset Comments to Original Position
If comments have moved out of position, you can reset them using the following
code:


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


Gord Dibben MS Excel MVP
 

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