Image Link

  • Thread starter Thread starter MM
  • Start date Start date
It depends on what you mean by an "image link". If you have an image
file that you want to use, go to the Insert menu, choose Picture then
From File. Navigate to and open the desired image. Then, open the VBA
editor, insert a new module (Insert menu, Module), and enter the
following code:

Sub GoToCell()
Application.Goto Worksheets("Sheet2").Range("C10"),True
End Sub

Then go back to Excel, right-click the picture, and choose Assign
Macro and then pick GoToCell from the list. Now, when you click the
picture, GoToCell will be executed, and you will be taken to
Sheet2!C10.

If this is not what you want, provide much more detail.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top