3
I need to copy a chart and paste it as an image in the same spreadsheet.
I’m trying to select the range that contemplates all the graphic and paste special as file Bitmap or Enchanced. Follows 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 the error occurs 1004, Erro de definição de aplicação ou objeto.
Anyone can help?
Thank you Daniel. I’ll try it here. .
– user3808159
Do you want to copy the Range with the values of the cells? This will depend on many variables and can be performed in numerous ways.
– danieltakeshi