Mouse hover and display data from selected cells on same sheet

Birdy01962

New Member
Joined
Jun 27, 2016
Messages
25
I have a golf spreadsheet with hole numbers(row 3) and associated scores(row 5) which dynamically change weekly. These scores are totalled in column J, Scores are columns K - T.

I have a mousehover function on Column J (totals). When I hover mouse over Column J I would like to see Columns K - T detailed with associated Hole Number (rows 1 and row 7). At moment I have tested the hover function with Show Msgbox and Clear Msgbox works fine.

This seems similar to the Hyperlink function to access other files or Web pages but I only want a temporary display of hole and scores while I hover with mouse.

Code so far - (just to display the data from selected columns) which I have gleaned from various web sites, don't fully understand.

Private Sub Label2_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
showf9scores
End Sub

Sub showf9scores()
'MsgBox "abc"
With Sheet2.Shapes("cbbestgross").Visible = msoCTrue ' cbbestgross is named cell in column 8

If Range("k10").Value = "38" Then
Range("l10:u10").Visible = msoCTrue
Else
End If
End With
End Sub

View attachment 63945
Any help would be appreciated
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,215,339
Messages
6,124,365
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