VBA - Macro for getting pictures from file that match cell value

firasawad

New Member
Joined
Nov 7, 2021
Messages
3
Office Version
  1. 2016
Platform
  1. Windows
Hi All,

i don't seem to find the VBA anywhere online,i have been searching for the last 5 hours. need your help

my images stored is in the shared folder \\191.128.5.296\Marina FileServer\E-Commerce_Share\Website Photo\All website photo

I want to get the image that matches name/code in column C and put, resize it in column D.
note that I have 1500 codes that need to be Matched with pictures

for example :
Code
AAG1045_1 in column B should match with picture name AAG1045_1 in the shared folder



can you please help with that



1636271555650.png
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
@John_w I note when run the code repeatedly . it will copy the picture in cells for many time .I'm asking if there is way just copy one time when I run macro continuously?
because it will affect size the file when run the macro continuously . it's useless to copy the picture in the same cell for many times it will make bigger file size
 
Upvote 0
I note when run the code repeatedly . it will copy the picture in cells for many time .I'm asking if there is way just copy one time when I run macro continuously?
Try this modified code.
VBA Code:
Public Sub Add_Images_To_Cells2()

    Const folderPath As String = "D:\All website photo\"
    
    Dim allPics As String
    Dim r As Long
    Dim imageFile As String
    Dim image As Shape
    
    Application.ScreenUpdating = False
    
    With ActiveSheet
    
        allPics = ""
        For r = 1 To .Shapes.Count
            If .Shapes(r).Type = msoPicture Then allPics = allPics & .Shapes(r).TopLeftCell.Address & ","
        Next
    
        For r = 2 To .Cells(.Rows.Count, "B").End(xlUp).Row
            If InStr(allPics, .Cells(r, "C").Address & ",") = 0 Then
                imageFile = Dir(folderPath & .Cells(r, "B").Value & ".*")
                If InStr(1, ".jpg.png.gif.ico", Mid(imageFile, InStrRev(imageFile, ".")), vbTextCompare) Then
                    Set image = .Shapes.AddPicture(Filename:=folderPath & imageFile, _
                                                   LinkToFile:=False, SaveWithDocument:=True, _
                                                   Left:=.Cells(r, "C").Left, Top:=.Cells(r, "C").Top, Width:=.Cells(r, "C").Width, Height:=.Cells(r, "C").Height)
                    With image
                        .Placement = xlMoveAndSize
                        .DrawingObject.PrintObject = True
                    End With
                Else
                    .Cells(r, "C").Value = "Not found"
                End If
                DoEvents
            End If
        Next
    
    End With
    
    Application.ScreenUpdating = True
    
    MsgBox "Done"
    
End Sub
 
Upvote 0
thanks , but it gives error "invalid procedure call or argument" in this line
VBA Code:
   If InStr(1, ".jpg.png.gif.ico", Mid(imageFile, InStrRev(imageFile, ".")), vbTextCompare) Then
 
Upvote 0
Is the folder correct?
VBA Code:
Const folderPath As String = "D:\All website photo\"
If not, change the string to the correct folder.
 
Upvote 0
absolutely . this is the same thing. when I create th folder in drive D i use copy & paste to rename the folder as is in the code .
 
Upvote 0
I've found the problem is when start the data from row 2 it will show the error , but if it starts from row1 works perfectly

how can i fix this problem because in row 1 is topics headers, any idea?
 
Upvote 0
I've found the problem is when start the data from row 2 it will show the error , but if it starts from row1 works perfectly

how can i fix this problem because in row 1 is topics headers, any idea?
The code should work for you because these 2 lines expect the image names in column B starting at row 2:
VBA Code:
For r = 2 To .Cells(.Rows.Count, "B").End(xlUp).Row

imageFile = Dir(folderPath & .Cells(r, "B").Value & ".*")
 
Upvote 0
I tried much for more than PC and file , but nothing changes. the error still shows .so I would share my file may be find out something .
imag.xlsm
thanks again
 
Upvote 0
thanks , but it gives error "invalid procedure call or argument" in this line
VBA Code:
   If InStr(1, ".jpg.png.gif.ico", Mid(imageFile, InStrRev(imageFile, ".")), vbTextCompare) Then
That error occurs if a file in the folderPath doesn't match the name in column B. For example, with the names 1, 2, aaa in your workbook the code is looking for files matching 1.*, 2.* and aaa.* in the folderPath. I've changed the macro to check for this possibility, and changed the 'Not found' text put in column C, depending on whether no file matching the name was found, or a file was found but doesn't match a known file extension (.jpg, .png, .gif, .ico).
VBA Code:
Public Sub Add_Images_To_Cells2()

    Const folderPath As String = "D:\All website photo\"
    
    Dim allPics As String
    Dim r As Long
    Dim imageFile As String
    Dim image As Shape
    
    Application.ScreenUpdating = False
    
    With ActiveSheet
    
        allPics = ""
        For r = 1 To .Shapes.Count
            If .Shapes(r).Type = msoPicture Then allPics = allPics & .Shapes(r).TopLeftCell.Address & ","
        Next
    
        For r = 2 To .Cells(.Rows.Count, "B").End(xlUp).Row
            If InStr(allPics, .Cells(r, "C").Address & ",") = 0 Then
                imageFile = Dir(folderPath & .Cells(r, "B").Value & ".*")
                If imageFile <> vbNullString Then
                    If InStr(1, ".jpg,.png,.gif,.ico,", Mid(imageFile, InStrRev(imageFile, ".") & ","), vbTextCompare) Then
                        .Cells(r, "C").ClearContents
                        Set image = .Shapes.AddPicture(Filename:=folderPath & imageFile, _
                                                       LinkToFile:=False, SaveWithDocument:=True, _
                                                       Left:=.Cells(r, "C").Left, Top:=.Cells(r, "C").Top, Width:=.Cells(r, "C").Width, Height:=.Cells(r, "C").Height)
                        With image
                            .Placement = xlMoveAndSize
                            .DrawingObject.PrintObject = True
                        End With
                    Else
                        .Cells(r, "C").Value = "Found '" & imageFile & "' but not a known image"
                    End If
                    DoEvents
                Else
                    .Cells(r, "C").Value = "No file found matching '" & .Cells(r, "B").Value & ".*'"
                End If
            End If
        Next
    
    End With
    
    Application.ScreenUpdating = True
    
    MsgBox "Done"
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,094
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