adding a link to a picture

gparry

New Member
Joined
Mar 30, 2021
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have added a picture to my sheet using

wSheet5.Shapes.AddPicture(graphloc, False, True, 100, 100, 50, 50).Name = "graph"

where graphloc is the location of the image. This works as expected. i now want to add a link to the image so that when it is clicked it opens a different tab in the same workbook.

Is this possible?

thanks

Gareth
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi,

I have added a picture to my sheet using

wSheet5.Shapes.AddPicture(graphloc, False, True, 100, 100, 50, 50).Name = "graph"

where graphloc is the location of the image. This works as expected. i now want to add a link to the image so that when it is clicked it opens a different tab in the same workbook.

Is this possible?

thanks

Gareth
Do a search for the "OnAction" Property
 
Upvote 0
Hi,

thanks i resolved this in the end using

wSheet5.Hyperlinks.Add(wSheet5.Shapes.Item(1), "", "Rank!A1", "", "Graphs")

where the number in brackets (Item(1)) is the order in which the picture was added

thanks

Gareth
 
Upvote 0
Solution

Forum statistics

Threads
1,214,996
Messages
6,122,636
Members
449,092
Latest member
bsb1122

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