Trying to Add three pictures to a defined cell

carrguy01

New Member
Joined
Apr 7, 2011
Messages
42
I am not sure if i even got the right area on here yet! I am new but I am a quick learner so bear with me. I want to make a feature sheet that I will be changing on a regular basis. I want two different pictures to be located in the top right and top left of my page. The size of the original pictures very. So I need something that will resize them to make it uniformed. They can be in one cell or even merged cells that part does not bother me. The picture size has to be the same I am looking for 1.5 inch by 1.5 inch. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p> </o:p>
I then want to put a picture of a house that will be changing all the time but the size I want to remain the same and that is 4 inch wide 2 inch tall. <o:p></o:p>
<o:p> </o:p>
Any help would be great. I am not sure if I need to put my email or not but here it is markcarr01@sympatico.ca<o:p></o:p>
<o:p></o:p>
 
Maybe like this

Rich (BB code):
With ActiveSheet.Shapes(ActiveSheet.Shapes.Count)
    .LockAspectRatio = False
    .Top = Range("C3").Top
    .Left = Range("C3").Left
    .Height = Range("C3").RowHeight * 5
    .Width = Range("C3").Width * 2
End With
 
Upvote 0

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
can i add a browse button on sheet 3 where all the information is being manually inputer on. I want to use the button to locate and click on the picture and the path be copied and inserted into the code that i have working on sheet 4?
 
Upvote 0

Forum statistics

Threads
1,214,936
Messages
6,122,340
Members
449,079
Latest member
rocketslinger

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