LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Exploded cell view/comment

i ended up making a macro that auto comments whatever is typed into the cell

(worksheet)

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
FillComments
End Sub

(General)

Option Explicit

Sub FillComments()
On Error Resume Next
Dim RangeAddress As String
Dim Notes As Range
Dim NoteCell As Range

RangeAddress = "c9:ag9,c15:ag15,c21:ag21"

Set Notes = ActiveSheet.Range(RangeAddress)
For Each NoteCell In Notes.Cells
If Len(NoteCell.Value) 0 Then
NoteCell.AddComment
NoteCell.Comment.Text Text:=NoteCell.Value
Else
NoteCell.Comment.Delete
End If
Next

End Sub

"Gary''s Student" wrote:

I wish I could help you. I have not had any luck trapping mouse_over.

Oviously Excel knows the mouse is hovering above a cell, because it makes a
comment visible. I don't know if this status is available to the programmer.
--
Gary''s Student - gsnu200764


"JTMateo45" wrote:

What im trying to do is format the cell so that when someone mouses over the
cell it automatically pops up a comment box that they can edit/add to.
Basically taking the "insert comment" step out of it and allowing them to
come back and change the comment by simply clicking on it.

Thanks in advance

"Gary''s Student" wrote:

Select the cell and :
Insert Comment
--
Gary''s Student - gsnu200764


"JTMateo45" wrote:

I am tryint to format a cell so that when you mouse over it, a "comment" like
box appears that you can type in instead of typing in the actual box. Please
comment if you can help.



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I set the default comment format and view in Excel Lady G Excel Discussion (Misc queries) 1 May 27th 07 05:38 AM
exploded pie chart (2d) tikchye_oldLearner57 Excel Discussion (Misc queries) 1 July 10th 06 09:32 AM
exploded pie chart with background picture rvExcelNewTip Charts and Charting in Excel 5 August 1st 05 06:54 PM
How to pie chart with 2 values and one exploded for definition? jeffmuoio Charts and Charting in Excel 1 February 16th 05 02:11 PM
how do i create an exploded bar chart sami b Charts and Charting in Excel 4 January 27th 05 12:35 AM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"