Saturday, April 20, 2019

Insert a Linked Picture


Insert a Linked Picture
This VBA code will convert your selected range into a linked picture and you can use that image anywhere you want.
Sub LinkedPicture()
Selection.Copy
ActiveSheet.Pictures.Paste(Link:=True).Select
End Sub

No comments:

Post a Comment