Sub Tester()
Sheet1.Range("D5:E16").Copy
Sheet2.Activate
Sheet2.Range("A1").Select
ActiveSheet.Pictures.Paste Link:=True
Application.CutCopyMode = False
End Sub
How can I shrink the image by a factor when pasting??
To resize a picture you can use this:
Picture.ShapeRange.Width = 0.5 * Picture.Width
Picture.ShapeRange.Height = 0.75 * Picture.Height
A more in-depth example can be found here. I like to separate the pasting and resizing part, it keeps the code flexible.