Excel VBA: Inserting a Picture from the Folder – 3 Methods

 

You have pictures in a specific folder and want to insert one of these pictures in your Excel worksheet using a VBA code.

Excel VBA Insert Picture from Folder

 

Follow the steps to open the Visual Basic Editor.

  • Go to the Developer tab.
  • Click Visual Basic.

  • In the Visual Basic for Applications window, click Insert and select Module.


Method 1 – Inserting a Picture by Name from a Folder Using a VBA Code in Excel

  • Select a cell in the Active Worksheet to insert the picture.

  • Open the Visual Basic Editor and enter the following code.
Sub InsertPicture()
ActiveSheet.Shapes.AddPicture _
    Filename:= , _
    LinkToFile:=msoFalse, _
    SaveWithDocument:=msoTrue, _
    Left:=ActiveCell.Left, _
    Top:=ActiveCell.Top, _
   Width:=-1, Height:=-1
End Sub

The Filename property is empty in the code. To get the picture location:

  • Go to the folder that contains the picture.
  • Hold  Shift key and rightclick the picture.
  • Choose “Copy as path”.

Excel VBA Insert Picture from Folder

  • Paste the picture location in the Filename property in the code.
Filename:="D:\pictures\coffee1.jpg", _
  • Run the code by pressing F5.

Excel VBA Insert Picture from Folder

  • This is the output.

Excel VBA Insert Picture from Folder

Code Explanation:

The Shape.AddPicture method inserts the picture from an existing file and returns a shape object. The syntax is:

expression.AddPicture(FileName, LinkToFile, SaveWithDocument, Left, Top, Width, Height)

Here,

LinkToFile = msoFalse

made the picture an independent copy of the file.

SaveWithDocument:=msoTrue

saved the linked picture with the document in which it will be inserted.

 Left:=ActiveCell.Left, Top:=ActiveCell.Top

inserted the picture at the top-left corner of the selected cell.

 Width:=-1, Height:=-1

Inserted the picture in its original size.


Method 2 – Inserting Multiple Pictures into a Worksheet from a Folder Using VBA in Excel

Scenario:
You have a list of Coffee items and want to insert the pictures for each of these items in a Column.

Solution:

  • Select a cell (C4, here) to insert the first picture.

  • Enter the following code.
Sub InsertMultiplePictures()
Dim Pictures() As Variant
Dim PictureFormat As String
Dim PicRng As Range
Dim PicShape As Shape
On Error Resume Next
Pictures = Application.GetOpenFilename(PictureFormat, MultiSelect:=True)
PicColIndex = Application.ActiveCell.Column
If IsArray(Pictures) Then
    PicRowIndex = Application.ActiveCell.Row
    For lLoop = LBound(Pictures) To UBound(Pictures)
        Set PicRng = Cells(PicRowIndex, PicColIndex)
        Set PicShape = ActiveSheet.Shapes.AddPicture(Pictures(lLoop), msoFalse, msoCTrue, PicRng.Left, PicRng.Top, PicRng.Width, PicRng.Height)
        PicRowIndex = PicRowIndex + 1
    Next
End If
End Sub
  • Run the code by pressing F5.
  • In the Open window, choose the Folder containing the pictures.
  • Select the pictures to be inserted. Here, all pictures.
  • Click Open.

Excel VBA Insert Picture from Folder

  • This is the output.

Excel VBA Insert Picture from Folder


Method 3 – Running a VBA Code to Insert a Picture from a Folder Based on a Cell Value

Scenario:
In B4, create a Dropdown list with 4 coffee items- coffee1, coffee2, coffee3, and coffee4.

  • Select B4.
  • Go to the Data tab and select Data Validation.

  • In the Data Validation window, click the Settings option.
  • In Allow, choose List.

Excel VBA Insert Picture from Folder

  • In the Source input box, enter the names of the items separating them by commas.
  • Click OK to save the Settings.

Excel VBA Insert Picture from Folder

  • A dropdown list with 4 coffee items was created.

Excel VBA Insert Picture from Folder

Task:
To insert the picture of the selected coffee item in the dropdown list in B5:

Excel VBA Insert Picture from Folder

Solution:
Enter the following code in the Visual Basic Editor.

Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim InsPic As Picture
Dim LocationPic As String
If Target.Address = Range("B4").Address Then
ActiveSheet.Pictures.Delete
LocationPic = "D:\pictures\" & Range("B4").Value & ".jpg"
With Range("B5")
Set InsPic = ActiveSheet.Pictures.Insert(LocationPic)
.RowHeight = InsPic.Height
InsPic.Top = .Top
InsPic.Left = .Left
InsPic.Placement = xlMoveAndSize
End With
End If
End Sub

coffee3 is selected in the item list, and the code automatically inserted the associated picture from its defined location.

Excel VBA Insert Picture from Folder

The selected item is changed to coffee2 and the output is in the following:

Excel VBA Insert Picture from Folder

Code Explanation:

  • The cell reference of the dropdown list is set.
If Target.Address = Range("B4").Address Then
  • The picture location is set:  the folder address (“D:\pictures\”),  the item name in B4, and the file extension (.jpg).
LocationPic = "D:\pictures\" & Range("B4").Value & ".jpg"
  • Sets the cells to insert the picture.
With Range("B5")

Notes

  • Set the height and width of the inserted pictures:
 Width: =70, Height:=70
  • To view the code, right-click the Sheet Name and select View Code.


Download Practice Workbook

Download the practice workbook to exercise.


Related Articles

Get FREE Advanced Excel Exercises with Solutions!
Al Arafat Siddique
Al Arafat Siddique

Al Arafat Siddique, BSc, Naval Architecture and Marine Engineering, Bangladesh University of Engineering and Technology, has worked on the ExcelDemy project for two years. He has written over 85+ articles for ExcelDemy. Currently, he is working as a software developer. He is leading a team of six members to develop Microsoft Office Add-ins, extending Office applications to interact with office documents. Other assigned projects to his team include creating AI-based products and online conversion tools using the latest... Read Full Bio

6 Comments
  1. am not able to fetch the image using method 3

    • Reply Avatar photo
      Md. Abu Sina Ibne Albaruni Jun 15, 2023 at 11:25 AM

      Dear NIRMAL

      Thank you for taking the time to read this article. I can see that you are facing a problem while executing the code in method 3. I guess It is Run-time error ‘1004’.

      Run-time error 1004

      Kindly note that you need to modify the file path according to the folder where you are storing your pictures. You also have to specify the type of the image (jpg, jpeg, png, etc.) correctly. So, you should change the LocationPic variable in the code accordingly.

      For your convenience, I am attaching a photo indicating the exact portions of the code that you need to re-write.

      Modify Code

      If you have any more questions, please let us know in the comments.

      Regards
      Md. Abu Sina Ibne Albaruni
      Team ExcelDemy

  2. Great, thank u for ur help, also possible to insert images in a particular size in excel using the same code??

    • Reply Lutfor Rahman Shimanto
      Lutfor Rahman Shimanto Oct 10, 2023 at 6:45 PM

      Hello NIRMAL

      Thanks for reaching out and posting your comment. You asked if it is possible to insert images in a particular size in Excel using the same code or not. The answer is Yes. As mentioned in the article, you can easily set the .height and .width properties for customization.

      I am going to present a modified version of the given code mentioned in the third method to handle some errors.

      Excel VBA Event Procedure:

      
      Option Explicit
      
      Private Sub Worksheet_Change(ByVal Target As Range)
      
          Dim ws As Worksheet
          Dim dropdownCell As Range
          Dim img As Object
          Dim imgPath As String
          Dim imgName As String
      
          Set ws = ThisWorkbook.Sheets("method 3")
          Set dropdownCell = ws.Range("B4")
      
          If Not Intersect(Target, dropdownCell) Is Nothing And dropdownCell.Value <> "" Then
      
              imgName = dropdownCell.Value & ".jpg"
              
              imgPath = "C:\Users\Lutfor Rahman\Downloads\Insert Pictures\" & imgName
              
              If Dir(imgPath) <> "" Then
                  Set img = ws.Pictures.Insert(imgPath)
                  With img
                      .Left = ws.Range("B5").Left
                      .Top = ws.Range("B5").Top
                      .Width = 70
                      .Height = 70
                  End With
              Else
                  MsgBox "Image not found in the specified folder."
              End If
          End If
      
      End Sub
      

      Excel VBA Editor Window

      Hopefully, the idea will fulfil your requirements. Good luck!

      Regards
      Lutfor Rahman Shimanto

  3. I am curently using the method 2. I just wanted the pictures a little smaller so the borders show. how can it be done?

    • Hello Jan,

      You need to scale the image to show the borders.
      You can use the following updated code to do so.
      Here, I used 0.9,to scale 90% of the cell’s width and height.
      Next, used LockAspectRatio to maintain the aspect ratio of the pictures.
      Then, Adjusted the alignment using Left and Top, it will center the picture within the cell after resizing.

      Sub InsertMultiplePictures()
          Dim Pictures() As Variant
          Dim PictureFormat As String
          Dim PicRng As Range
          Dim PicShape As Shape
          Dim ScaleWidth As Single
          Dim ScaleHeight As Single
      
          ' Define scale factors (90% of the cell size)
          ScaleWidth = 0.9
          ScaleHeight = 0.9
      
          On Error Resume Next
          Pictures = Application.GetOpenFilename(PictureFormat, MultiSelect:=True)
          PicColIndex = Application.ActiveCell.Column
      
          If IsArray(Pictures) Then
              PicRowIndex = Application.ActiveCell.Row
              For lLoop = LBound(Pictures) To UBound(Pictures)
                  Set PicRng = Cells(PicRowIndex, PicColIndex)
                  Set PicShape = ActiveSheet.Shapes.AddPicture(Pictures(lLoop), msoFalse, msoCTrue, PicRng.Left, PicRng.Top, PicRng.Width, PicRng.Height)
                  ' Scale the picture size
                  With PicShape
                      .LockAspectRatio = msoTrue
                      .Width = PicRng.Width * ScaleWidth
                      .Height = PicRng.Height * ScaleHeight
                      ' Center the picture in the cell
                      .Left = PicRng.Left + (PicRng.Width - .Width) / 2
                      .Top = PicRng.Top + (PicRng.Height - .Height) / 2
                  End With
                  PicRowIndex = PicRowIndex + 1
              Next
          End If
      End Sub
      

      Regards
      ExcelDemy

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo