• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to link to an image from one excel file to another

second99

New Member
I’m trying to figure out how to link to an image from one excel file to another. For example, see attached. When I try to link to that photo from another file, I get a 0 instead of the JPG. I'm using the formula pattern:

='C:\Users\smith\Desktop\[team_MASTER.xlsx]Sheet1'!$A$1
 

Attachments

  • team_MASTER.xlsx
    66.4 KB · Views: 2
This is far from being a speciality of mine!

My suggestion would be to extract the pictures as .jpg to a folder.
Then
Code:
Set p = ActiveSheet.Pictures.Insert( _
        "Path and file name").ShapeRange
Good luck
 
Back
Top