Data validation comments...appearance

mad3

Board Regular
Joined
Sep 15, 2009
Messages
128
Office Version
  1. 365
Platform
  1. Windows
I'm trying to get the comments from the cells that are on another sheet to appear when my users hover over cell where drop-down list is.
Please help, Mike in Cali...
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Mike,

If you're comfortable with a vba approach you might consider the following...

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim cmt As Comment
Dim dvRange As Range, r As Range
Set dvRange = Sheets("Sheet2").Range("D4:D7") 'Change to your sheet name and range

If Not Intersect(Target, Range("H4")) Is Nothing Then 'Change to your Data Validation range
    For Each r In dvRange
        If Target.Value = r.Value Then
            Target.ClearComments
            Target.AddComment.Text r.Comment.Text
        End If
    Next r
End If
End Sub

The code should be pasted into the sheet module corresponding to the sheet with the drop down.

Cheers,

tonyyy
 
Upvote 0

Forum statistics

Threads
1,214,891
Messages
6,122,101
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top