Is there a way to show a comment only when the corresponding cell is selected?
Is there a way to show a comment only when the corresponding cell is selected?
Not a comment I don't believe (I assume you are unhappy with the default
behavior), but perhaps you could use data validation. It has several
options for popping up messages.
--
Regards,
Tom Ogilvy
"LDanix" <LDanix@discussions.microsoft.com> wrote in message
news:17115113-6BA3-4DED-B8E8-C50D2DCF2916@microsoft.com...
> Is there a way to show a comment only when the corresponding cell is
selected?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim C As Comment
For Each C In ActiveSheet.Comments
C.Visible = (C.Parent.Address = Target.Address)
Next C
End Sub
"LDanix" wrote:
> Is there a way to show a comment only when the corresponding cell is selected?
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks