Saturday, April 20, 2019

Convert Range into an Image


Convert Range into an Image
Paste selected range as an image. You just have to select the range and once you run this code it will automatically insert a picture for that range.
Sub PasteAsPicture()
Application.CutCopyMode = False
Selection.Copy
ActiveSheet.Pictures.Paste.Select
End Sub

No comments:

Post a Comment