Hi all,
I'm trying to copy an image that is present on excel sheet to a word doc.
I know that to copy a chart
With ActiveSheet.ChartObjects(1).Chart
.CopyPicture Appearance:=xlScreen, Size:=xlScreen, Format:=xlPicture
Paste chart
wrdDoc.Paragraphs(wrdDoc.Paragraphs.Count).Range.PasteSpecial Link:=False, DataType:=wdPasteMetafilePicture, Placement:=wdInLine, DisplayAsIcon:=False
End With
but what about an image (jpg/gif/...) that has been inserted in the active sheet?
Thanks for the support
I'm trying to copy an image that is present on excel sheet to a word doc.
I know that to copy a chart
With ActiveSheet.ChartObjects(1).Chart
.CopyPicture Appearance:=xlScreen, Size:=xlScreen, Format:=xlPicture
Paste chart
wrdDoc.Paragraphs(wrdDoc.Paragraphs.Count).Range.PasteSpecial Link:=False, DataType:=wdPasteMetafilePicture, Placement:=wdInLine, DisplayAsIcon:=False
End With
but what about an image (jpg/gif/...) that has been inserted in the active sheet?
Thanks for the support