How to name a range-to copypicture?

minmark

New Member
Joined
Jul 18, 2016
Messages
44
Dear Gents,

I would like to name a copied picture as following code.
Would you please help me to figure out how to name the shape generate from
this range A4:AH11? I hope to name it with"My picture".
Many Thanks.

Code:
Sub RM()
    Sheet7.Range("A4:AH11").CopyPicture Appearance:=xlScreen, Format:=xlPicture
    
    
    Sheets("R_M").Select
    Range("A7:A8").Select
    ActiveSheet.Paste
    
    Selection.ShapeRange.IncrementLeft 80
    Selection.ShapeRange.IncrementTop 20
    Call PDFActiveSheet
End Sub
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Try this

Code:
Sub RM()
    Dim pic As Picture
    Sheet7.Range("A4:AH11").CopyPicture Appearance:=xlScreen, Format:=xlPicture
    Sheets("R_M").Activate
    With ActiveSheet
        .Range("A7:A8").Select
        .Paste
        Set pic = .Pictures(.Pictures.Count)
    End With
    With pic
        .Name = "My picture"
        .ShapeRange.IncrementLeft 80
        .ShapeRange.IncrementTop 20
    End With
    
    Call PDFActiveSheet
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,824
Messages
6,181,186
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

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