+ Reply to Thread
Results 1 to 3 of 3

Add multiple excel worksheets(tabs) with jpgs

  1. #1
    SunnyHKim@gmail.com
    Guest

    Add multiple excel worksheets(tabs) with jpgs

    I have several jpgs that have to be inserted into each separate
    worksheet. Is it possible to batch this along with naming the
    worksheet tabs the jpg name?

    Regards

    Sunny


  2. #2
    Jason Morin
    Guest

    Re: Add multiple excel worksheets(tabs) with jpgs

    This macro should do the job. Place all your .jpg files
    into a new folder. Make sure to change "sPath" to your
    path and correct folder name (mine is named "thejpgs").

    Sub Insert_JPG()
    Dim sPath As String
    Dim NewWS As Worksheet
    Dim PathArray As Variant
    Dim FileName As String

    sPath = "C:\Documents and Settings\jmorin\Desktop\thejpgs"

    With Application.FileSearch
    .NewSearch
    .LookIn = sPath
    .SearchSubFolders = False
    .FileName = "*.*"
    .FileType = msoFileTypeAllFiles

    If .Execute() > 0 Then
    For i = 1 To .FoundFiles.Count
    PathArray = Split(.FoundFiles(i), "\")
    FileName = PathArray(UBound(PathArray))
    Set NewWS = Sheets.Add
    ActiveSheet.Pictures. _
    Insert (sPath & "\" & FileName)
    NewWS.Name = FileName
    Next
    Else
    MsgBox "There were no files found."
    End If

    End With

    End Sub

    ---
    HTH
    Jason
    Atlanta, GA

    >-----Original Message-----
    >I have several jpgs that have to be inserted into each

    separate
    >worksheet. Is it possible to batch this along with

    naming the
    >worksheet tabs the jpg name?
    >
    >Regards
    >
    >Sunny
    >
    >.
    >


  3. #3
    SunnyHKim@gmail.com
    Guest

    Re: Add multiple excel worksheets(tabs) with jpgs

    Jason,

    That worked wonders! Thanks a bunch!

    Sunny


+ 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