+ Reply to Thread
Results 1 to 3 of 3

Cell Comments-Is there a way to show a comment only when the corresponding cell

Hybrid View

  1. #1
    LDanix
    Guest

    Cell Comments-Is there a way to show a comment only when the corresponding cell

    Is there a way to show a comment only when the corresponding cell is selected?

  2. #2
    Tom Ogilvy
    Guest

    re: Cell Comments-Is there a way to show a comment only when the corresponding cell

    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?



  3. #3
    K Dales
    Guest

    re: Cell Comments-Is there a way to show a comment only when the corresponding cell

    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?


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1