Can you mouse over a cell and have it display detail that is not part of the cell entry?

Goargyle

New Member
Joined
Mar 7, 2017
Messages
4
I have a half dozen codes that a user can enter into a field. Once a code is entered into a cell (e.g. 'KM-1'), I'd like the user to be able to hover the mouse over the cell and he'd see the description of the code (e.g., 'Develop/Launch Comms Campaign'). I don't want to populate the cell with the code & full description as a default. Is there a way to set that up in Excel 2010?
 
Hmmm....looks like more than 6 codes / descriptions to me......

All yours Scott...:wink:
 
Upvote 0

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
I'll take a stab at that:
Code:
On Error Resume Next
Dim c As Range, d As Range
Set d = Intersect(Target, Range("A:A"))
If d Is Nothing Then Exit Sub
Application.EnableEvents = False
For Each c In d
    c.Comment.Delete
    Select Case UCase(c)
        Case "KM-1": c.AddComment "Develop/Launch Comms Campaign"
        Case "KM-2": c.AddComment "Identify/Engage Advocacy Groups"
        Case "KM-3": c.AddComment "Identify Ways to Sustain Sharing Behavior"
        Case "KM-4": c.AddComment "Define/Cultivate Roles for SLT & Admins"
        Case "KM-5": c.AddComment "Create Onboarding KM Training"
        Case "KM-6": c.AddComment "Develop/Deploy iManage"
        Case "KM-7": c.AddComment "Develop/Deploy Portal (MVPs)"
        Case "KM-8": c.AddComment "Develop/Deploy TeamConnect"
        Case "KM-9": c.AddComment "Implement KM Analytics"
        Case "KM-10": c.AddComment "Identify/Gather Knowledge Collections"
        Case "KM-11": c.AddComment "Identify/Fill Knowledge Gaps"
        Case "KM-12": c.AddComment "Create Knowledge Curation Process"
        Case "KM-13": c.AddComment "Develop Internal Knowledge Resources"
        Case "KM-14": c.AddComment "Establish/Measure Metrics for Success"
        Case "KM-15": c.AddComment "Improve Knowledge Tools Continuously"
        Case "KM-16": c.AddComment "Keep KM Program Vital"
    End Select
Next
Application.EnableEvents = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,336
Messages
6,124,334
Members
449,155
Latest member
ravioli44

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