Results 1 to 5 of 5

Thread: Insert Different Picture into Multiple Sheets

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Member
    Join Date
    Sep 2013
    Posts
    37
    Rep Power
    0

    Insert Different Picture into Multiple Sheets

    hi all...


    how to inserting different 3 pictures in different cell and different sheets ( i have over 50 sheets in 1 file)
    Code:
    Sub InsertPic() Dim I As Long
        Dim xPath As String
        Dim xShape As Shape
        Dim xRg As Range
        xPath = "G:\foto_test\1.jpg,2.jpg,3.jpg"
        If Dir(xPath) = "" Then
            MsgBox "Picture file was not found in path!", vbInformation, "test"
            Exit Sub
        End If
        For I = 1 To ActiveWorkbook.Sheets.Count
            Set xRg = Sheets(I).Range("B10:C10") ("D10:E10") ("f10:g10")
            Set xShape = Sheets(I).Shapes.AddPicture(xPath, True, True, xRg.Left, xRg.Top, xRg.Width, xRg.Height)
        Next End Sub
    file name of picture are e.g. 1.jpg, 2.jpg,3.jpg


    my target is how to insert picture in cell with criteria :
    1.jpg----inserted into cell B10:C10 for each sheet
    2.jpg----inserted into cell D10:E10 for each sheet
    3.jpg----inserted into cell F10:G10 for each sheet


    anybody would help me and greatly appreciated


    susanto
    Attached Files Attached Files

Similar Threads

  1. Replies: 2
    Last Post: 02-27-2019, 05:35 PM
  2. Replies: 8
    Last Post: 12-05-2017, 03:20 PM
  3. Replies: 2
    Last Post: 09-19-2013, 10:17 AM
  4. Insert Picture in a Cell UDF
    By Admin in forum Download Center
    Replies: 10
    Last Post: 12-07-2012, 04:49 PM
  5. Replies: 4
    Last Post: 05-03-2012, 10:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •