How to make a label appear when cursor hovers on image?

Scorpion Steve

Board Regular
Joined
Jun 5, 2011
Messages
220
As title states..
I have many locked images on excel which are individually named)
What is needed to have a label pop up saying what the image is when the cursor hovers over it?
I am pretty sure this is basic stuff
Many thanks
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
The easiest way would be to Place a Comment in a cell next the Picture.
You could also place the image in an "ImageControl" with a text Box and Then activate the Visible property of the TextBox with a "MouseMove "Event.
 
Upvote 0
you could you a hyperlink with a screentip as well. Something like:

Code:
Sheet1.Hyperlinks.Add _ Sheet1.Shapes("Name of Shape Goes Here In Quotes", _ 
"", "", Screentip:="Whatever you want to show when you hover over image"
 
Upvote 0

Forum statistics

Threads
1,224,507
Messages
6,179,181
Members
452,893
Latest member
denay

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