Excel VBA: Insert Picture from Folder (3 Methods)

This article illustrates how to insert a picture in Excel from the storage folder using VBA code with 2 different methods. We’ll be able to insert single or multiple pictures with these methods.


How to Insert Picture from Folder Using Excel VBA: 3 Methods

Let’s say, there are a bunch of pictures in a specific folder on the computer storage. We want to insert one of these pictures in our Excel worksheet using VBA code.

Excel VBA Insert Picture from Folder

The following section describes how to open and write code in the Visual Basic Editor.

Write Code in Visual Basic Editor

Follow the steps to open the Visual Basic Editor and write some code there.

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

  • In the Visual Basic for Applications window, click the Insert dropdown to select the New Module option.


1. Insert Picture by Name from Folder Using VBA Code in Excel

To insert a picture by its name, we need to follow the simple steps below.

  • First, select a cell in the Active Worksheet where we’re going to insert the picture.

  • Open the Visual Basic Editor and then put 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

As we see the Filename property is empty in the code. To get the picture location-

  • Navigate to the folder that holds the picture, we need to insert.
  • After that, hold down the Shift key and then rightclick on the picture.
  • Choose the “Copy as path” option.

Excel VBA Insert Picture from Folder

  • Now paste the picture location in the Filename property in the code.
Filename:="D:\pictures\coffee1.jpg", _
  • Finally, run the code by pressing F5.

Excel VBA Insert Picture from Folder

  • We’ve successfully inserted a picture named “coffee1” in an Excel worksheet from the folder.

Excel VBA Insert Picture from Folder

Code Explanation:

In our code, we used the Shape.AddPicture method to insert the picture from an existing file. This returns a shape object to return a new picture. The syntax of this method 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 where it was 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 at its original size.


2. Insert Multiple Pictures into Worksheet from Folder Using VBA in Excel

In this example, we’ll show how to insert multiple pictures into a Worksheet. This time we’ll be able to select one or multiple pictures from the folder itself.

Scenario:
Let’s say we have a list of Coffee items on our worksheet. We want to insert the related pictures of these items one after another in a Column following a sequence.

Solution:
To do that-

  • Select the cell (C4 in this example) to insert the first picture.

  • Now Copy and Paste 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
  • Running the code by pressing F5 would open up the Open window.
  • Navigate to the exact Folder location of the picture.
  • Select the pictures to be inserted. We’ve selected all the pictures in this example.
  • And finally hit the Open button.

Excel VBA Insert Picture from Folder

  • As the output, we successfully selected and inserted the pictures for the coffee items on the worksheet.

Excel VBA Insert Picture from Folder

Similarly, we could also select and insert only a single picture following the above method.


3. Run a VBA Code to Insert Picture from Folder Based on a Cell Value

In this example, we want to insert pictures dynamically in our worksheet based on a cell value. With the change of the cell value, the inserted picture will change accordingly.

Scenario:
In cell B4, we’ll create a Dropdown list with 4 coffee items- coffee1, coffee2, coffee3, and coffee4. Follow the simple steps to create the list.

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

  • In the Data Validation window, click the Settings option.
  • Under the Allow dropdown, Choose the List option.

Excel VBA Insert Picture from Folder

  • Now in the Source input box, write down the names of the items separating them by commas, and finally hit OK to save the Settings.

Excel VBA Insert Picture from Folder

  • The above steps have created a dropdown list with 4 coffee item names.

Excel VBA Insert Picture from Folder

Task:
We want to insert the picture of the selected coffee item in the dropdown list in cell B5.

Excel VBA Insert Picture from Folder

Solution:
Copy and Paste the following code into 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

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

Excel VBA Insert Picture from Folder

We changed the selected item to coffee2 and the output is in the following screenshot.

Excel VBA Insert Picture from Folder

Code Explanation:

  • In the following line, we set the cell reference of the dropdown list.
If Target.Address = Range("B4").Address Then
  • The following line sets the picture location. 1st part of the location is the folder address (“D:\pictures\”), then the next part defines the item name coming from cell B4, and the final part is the file extension (.jpg) of the pictures.
LocationPic = "D:\pictures\" & Range("B4").Value & ".jpg"
  • With the following line, we set where to insert the picture.
With Range("B5")

Notes

  • We can easily set the height and width of the inserted pictures as per our requirements. For example, to set the picture width and height to 70 px, we need to set the value in our code like this.
 Width: =70, Height:=70
  • To view the code associated with each method, Click the right button on the Sheet Name and select the View Code.


Download Practice Workbook

Download this practice workbook to exercise while you are reading this article.


Conclusion

Now, we know how to insert pictures in Excel from a folder using VBA code with different methods. Hopefully, it will help you to use these methods more confidently. Any questions or suggestions don’t forget to put them in the comment box below.


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