Adding Picture to Sheet

ryan_law2000

Well-known Member
Joined
Oct 2, 2007
Messages
738
Hey Everyone here is what im looking to do

I would like a button that when pressed goes through the follow steps:

1 - opens a computer browse (I can search for a picture on my computer that I would like to add)

2 - when the file is found and added/opened then it will then paste that picture to cell A1 and resize the picture to fit a specific range... (Im not sure how to explain the resizeing part, but i would like to make a border on the sheet that the picture will auto-fit to when added)

Can anyone help with this, or have any better ideas then what I have?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hi,

the following code inserts a picture in A1 and changes then the size of the picture on the range "A1:C2":

Code:
Sub Insert_Pic()
    On Error GoTo Fin
    Application.Dialogs(xlDialogInsertPicture).Show
    With Selection.ShapeRange
        .LockAspectRatio = False
        .Top = Range("A1").Top
        .Left = Range("A1").Left
        .Height = Range("A1").RowHeight * 2
        .Width = Range("A1").ColumnWidth * 5.67 * 3
    End With
Fin:
End Sub
Only a beginning... ;)

Case_Germany
 
Upvote 0

Forum statistics

Threads
1,213,550
Messages
6,114,265
Members
448,558
Latest member
aivin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top