Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I want to have a macro that will add a comment box to all the cells that the
interior color index = 6. Anyone have any ideas? TIA, Kim |
#2
![]() |
|||
|
|||
![]()
It's pretty straightforward... what should the comment box say?
|
#3
![]() |
|||
|
|||
![]()
Kim,
Her is an example that works on the current selection. -- HTH RP (remove nothere from the email address if mailing direct) "Kim" wrote in message ... I want to have a macro that will add a comment box to all the cells that the interior color index = 6. Anyone have any ideas? TIA, Kim |
#4
![]() |
|||
|
|||
![]()
Well here it is
Dim c As Range For Each c In Selection If c.Interior.ColorIndex = 6 Then c.AddComment c.Address End If Next c -- HTH RP (remove nothere from the email address if mailing direct) "Bob Phillips" wrote in message ... Kim, Her is an example that works on the current selection. -- HTH RP (remove nothere from the email address if mailing direct) "Kim" wrote in message ... I want to have a macro that will add a comment box to all the cells that the interior color index = 6. Anyone have any ideas? TIA, Kim |
#5
![]() |
|||
|
|||
![]()
Perfect! Thanks!
Kim "Bob Phillips" wrote: Well here it is Dim c As Range For Each c In Selection If c.Interior.ColorIndex = 6 Then c.AddComment c.Address End If Next c -- HTH RP (remove nothere from the email address if mailing direct) "Bob Phillips" wrote in message ... Kim, Her is an example that works on the current selection. -- HTH RP (remove nothere from the email address if mailing direct) "Kim" wrote in message ... I want to have a macro that will add a comment box to all the cells that the interior color index = 6. Anyone have any ideas? TIA, Kim |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I protect my comments from being edited by another user? | Excel Discussion (Misc queries) | |||
Paste Link - Cell Comments get lost | Excel Worksheet Functions | |||
Printing Comments in Excel 2003 | Excel Worksheet Functions | |||
How do I export comments into another excel column as cell content | Excel Worksheet Functions | |||
Can Comments be automatically converted to text cell values? | Excel Discussion (Misc queries) |