K
Kim
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
interior color index = 6. Anyone have any ideas?
TIA,
Kim
Bob Phillips said: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)