+ Reply to Thread
Results 1 to 2 of 2

Paste Picture by Cell data

Hybrid View

  1. #1
    Registered User
    Join Date
    09-12-2012
    Location
    Hong Kong
    MS-Off Ver
    Excel 2010
    Posts
    1

    Paste Picture by Cell data

    Hi, All,

    I have a program to make a function to paste picture, the is work but the problem that I need embed all the picture into excel independently.
    can anyone can help to make some correction for me?

    my Macro program here:
    Dim I As integer
    Dim FilPath As String
    Dim Rng As Range
    With Sheet1
    For I = 2 To . Range("B65536") .End(xlup).Row
    FilPath = "R:\04 Seasonal\"& .Cells(I,2).text & ".jpg"
    If Dir(FilPath) <> "" Then
        .Pictures.Insert(FilPath).Select
         Set Rng = .Cells(I, 1)
         With Selection
         .Top = Rng.Top + 1
          .Left = Rng.Left + 1
          .Width = Rng.Width - 1
          .Height = Rng.Height - 1
       End With
       Else
       S = S & Chr(10) & .Cells(I,2).Text
         End If
        Next
       .Cells(2, 2).Select
       End With
       If S <> "" Then
       MsgBox S & Chr(10) & "No Picture"
       End If
    End Sub

  2. #2
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Paste Picture by Cell data

    you can arrange this
    Sub loadimages()
    Dim cella, shp As Shape, target As Range
        fpath = "R:\04 Seasonal\"
        Set Rng = ActiveSheet.Range("a2:a4")
        For Each cell In Rng
           filenam = fpath & cell & ".jpg"
           ActiveSheet.Pictures.Insert(filenam).Select
    
          Set shp = Selection.ShapeRange.Item(1)
           With shp
              .LockAspectRatio = msoTrue
              .Width = 50
              .Height = 50
              .Cut
           End With
           Cells(cell.Row, cell.Column + 1).PasteSpecial
        Next
        
    End Sub
    If solved remember to mark Thread as solved

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1