Hyperlink

Excelboo2

Board Regular
Joined
Oct 11, 2006
Messages
175
I have a spreadsheet in JPG imported in a sheet. And I have some figures in other sheets (in excel) that I want to make reference to that JPG worksheet. Is is possible to do that? (ie if that JPG was just a ordinay excel worksheet, I could just use hyperlink). Many Thanks
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
I have a spreadsheet in JPG imported in a sheet. And I have some figures in other sheets (in excel) that I want to make reference to that JPG worksheet. Is is possible to do that? (ie if that JPG was just a ordinay excel worksheet, I could just use hyperlink). Many Thanks


If you just need to be able to open and close the jpg as needed through excel you could write a macro that can call the file.

for instance:

sub grabjpg()
dim filepath as string
dim jpgfile as string

'file path of folder that jpg is located (change as needed)
filepath = "C:\My documents\My pictures\"

'name of file needed (change as needed)
jpgfile = "Report.jpg"

workbooks.open filepath & jpgfile

End sub

and just copy this into a module and assign a button to it

*sorry if im not understanding your question
 
Upvote 0

Forum statistics

Threads
1,224,502
Messages
6,179,126
Members
452,890
Latest member
Nikhil Ramesh

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