+ Reply to Thread
Results 1 to 10 of 10

Importing pictures to Excel

  1. #1
    Registered User
    Join Date
    02-05-2014
    Location
    kentucky
    MS-Off Ver
    Excel 2003
    Posts
    7

    Importing pictures to Excel

    I have experience with VBA but no experience working with pictures. I have found 2 different Macros that will handle importing a picture. My question is can someone explain the difference between the two methods of locating the picture. see code below.

    the first method only shows the file name, but it does handle the picture and place it where I want it

    the second method shows thumbnails, but I'm having a hard time getting the picture where I want it, but I like being able to see what I'm getting.
    I tried to just copy the line from second macro and replace the line in the first macro. that did not work. educate me please.


    Sub InsertPicture()
    Dim sPicture As String, pic As Picture


    sPicture = Application.GetOpenFilename _
    ("Pictures (*.gif; *.jpg; *.bmp; *.tif), *.gif; *.jpg; *.bmp; *.tif", _
    , "Select Picture to Import")



    If sPicture = "False" Then Exit Sub
    Range("a8").Select
    Set pic = ActiveSheet.Pictures.Insert(sPicture)
    With pic
    .ShapeRange.LockAspectRatio = msoFalse
    .Height = ActiveCell.Height
    .Width = ActiveCell.Width
    .Top = ActiveCell.Top
    .Left = ActiveCell.Left
    .Placement = xlMoveAndSize
    End With

    Set pic = Nothing
    end sub

    ***********************
    Sub option_2()

    Dim MyWidth As Double
    Dim MyHeight As Double
    '----------------------------------------------------------
    '- check for existing picture
    If ActiveSheet.Pictures.Count > 0 Then
    rsp = MsgBox("There is an existing picture. " & vbCr _
    & "Do you wish to delete it ?", vbYesNoCancel)
    If rsp = vbCancel Then Exit Sub
    If rsp = vbYes Then
    ActiveSheet.Pictures(1).Delete
    End If
    End If
    '-----------------------------------------------------------


    '- get new picture
    Application.Dialogs(xlDialogInsertPicture).Show
    '- may not have inserted a picture


    If ActiveSheet.Pictures.Count > 0 Then
    '- resize
    MyWidth = ActiveSheet.Range("C11").Left
    MyHeight = ActiveSheet.Range("C11").Top
    Selection.Top = 1
    Selection.Left = 1
    Selection.Width = MyWidth
    Selection.Height = MyHeight
    Else
    MsgBox ("No picture inserted.")
    End If
    End Sub

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Importing pictures to Excel

    With the first method, just select the thumbnail view when the file dialog is displayed. It's one of the file view options at the top of the dialog.
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

  3. #3
    Registered User
    Join Date
    02-05-2014
    Location
    kentucky
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Importing pictures to Excel

    AlpaFrog i see your using 2003. I'm using 2007. I do not see the option you mentioned. Please allow for ignorance on my part. until 2 days ago I had no need or desire to work with pictures. What you refer to may be obvious to you, but I see nothing in the dialog box about views. using the second macro, thumbnail views are there. my assumption is that there is a difference in how the two methods work.

    I do appreciate the help.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Importing pictures to Excel

    Or

    Please Login or Register  to view this content.
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Importing pictures to Excel

    The Open file dialog is part of the Windows operating system and not really part of the Excel.

    You should have an "View" icon somewhere on your file dialog. I don't know why you don't see it. It would be a Windows setting and not an Excel setting though.

  6. #6
    Registered User
    Join Date
    02-05-2014
    Location
    kentucky
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Importing pictures to Excel

    Alphafrog It does help when you know what you are looking for. I'm a minimalist when it comes to computers. If I'm not using it it don't need to be on. thanks for your help.

  7. #7
    Registered User
    Join Date
    02-05-2014
    Location
    kentucky
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Importing pictures to Excel

    SHG this code is easier for me to read and it does what I was looking for. thanks

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Importing pictures to Excel

    You're welcome.

    AlphaFrog is talking about the View icon that appears in every Explorer window, unrelated to Excel.

  9. #9
    Registered User
    Join Date
    02-05-2014
    Location
    kentucky
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Importing pictures to Excel

    After seeing his last post I did find it. it was in a drop down menu that i had forgot about. I'm told getting old has some advantages. have yet to find any.

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Importing pictures to Excel

    Adult children

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto importing pictures into an excel page every week
    By molemeister in forum Excel General
    Replies: 0
    Last Post: 01-15-2013, 04:53 AM
  2. importing pictures next to their file names in the excel sheet
    By sunilsoni7 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-26-2012, 09:22 AM
  3. Importing and Arranging Pictures
    By Hlowmaster in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 03-28-2011, 01:08 PM
  4. Importing pictures
    By anovak728 in forum Excel General
    Replies: 2
    Last Post: 09-05-2006, 01:16 PM
  5. importing pictures
    By sumera usman in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 11-27-2005, 03:00 PM

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