PC Review


Reply
Thread Tools Rate Thread

Comments changes as active cells changes

 
 
Sugar Land
Guest
Posts: n/a
 
      25th Aug 2009
I have an Excel spread sheet with thousands of lines with comments on every
line.

When the cursor is on the cell (example: C3), I can see the comments. When
I return to the next line (C4) using “enter” or “down arrow”, I wish I could
see the comment for the next cell. The comment stays there and I have to use
the mouse to see the comments for the cell (C4).

Is there something I can do in Excel to activate that function? Or even a
macro (experts, need your help !!)


 
Reply With Quote
 
 
 
 
Sugar Land
Guest
Posts: n/a
 
      25th Aug 2009
additional info: The comments are big and "display all" is not helpful.

Thanks in advance, Matt

"Sugar Land" wrote:

> I have an Excel spread sheet with thousands of lines with comments on every
> line.
>
> When the cursor is on the cell (example: C3), I can see the comments. When
> I return to the next line (C4) using “enter” or “down arrow”, I wish I could
> see the comment for the next cell. The comment stays there and I have to use
> the mouse to see the comments for the cell (C4).
>
> Is there something I can do in Excel to activate that function? Or even a
> macro (experts, need your help !!)
>
>

 
Reply With Quote
 
Jacob Skaria
Guest
Posts: n/a
 
      27th Aug 2009
Right click the sheet tab and View Code..In the code pane paste the below
code..and try in that sheet...

'Display comments on cell selection
Dim rngTemp As Range
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not rngTemp Is Nothing Then rngTemp.Comment.Visible = False
If Not Target.Comment Is Nothing Then
Target.Comment.Visible = True
Set rngTemp = Target
End If
End Sub


If this post helps click Yes
---------------
Jacob Skaria


"Sugar Land" wrote:

> additional info: The comments are big and "display all" is not helpful.
>
> Thanks in advance, Matt
>
> "Sugar Land" wrote:
>
> > I have an Excel spread sheet with thousands of lines with comments on every
> > line.
> >
> > When the cursor is on the cell (example: C3), I can see the comments. When
> > I return to the next line (C4) using “enter” or “down arrow”, I wish I could
> > see the comment for the next cell. The comment stays there and I have to use
> > the mouse to see the comments for the cell (C4).
> >
> > Is there something I can do in Excel to activate that function? Or even a
> > macro (experts, need your help !!)
> >
> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
how can we copy cells comments text and paste to cells =?Utf-8?B?16nXmSDXpNec15M=?= Microsoft Excel Misc 2 10th Dec 2005 03:22 PM
Active Workbook Properties - comments Mark Microsoft Excel Programming 1 13th Jul 2004 01:28 PM
removing hard breaks from comments or active cells Julian Microsoft Excel Programming 1 14th May 2004 04:05 PM
VB Code to Add Comments to Cells from Several Other Cells Mark Microsoft Excel Programming 1 10th Sep 2003 06:02 PM
active comments window in powerpoint Nicolas Pirard Microsoft Powerpoint 1 27th Jul 2003 01:32 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:39 PM.