I need to copy a graphic and paste it as an image on the same worksheet.
I'm trying to select the range that contemplates any special graphics and paste as a Bitmap or Enchanced file. Here is the code:
Range("AM18:BE22").Select
Selection.Copy
Application.CutCopyMode = False
Selection.Copy
With Sheets("Relatório").Range("CV18:DM22")
.PasteSpecial DataType:=wdPasteMetafilePicture
End With
And error 1004, Application or object definition error occurs.
Can anyone help?