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

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
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,223,911
Messages
6,175,325
Members
452,635
Latest member
laura12345

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