I have some VBA code
I'm trying to paste into word but the chart just pastes in and is fairly large.
I would like to be able to control the size of how big the chart is.
I also tried just doing wdApp.Selection.Paste
is there a vba code the lets you paste and resize the chart? and make it smaller?
VBA Code:
Charts("Chart5").ChartArea.Copy
.Selection.GoTo what:=wdGoToBookmark, Name:="FG5"
wdApp.Selection.PasteSpecial Link:=False, DataType:=wdPasteEnhancedMetafile, Placement:=wdInLine, DisplayAsIcon:=False
I'm trying to paste into word but the chart just pastes in and is fairly large.
I would like to be able to control the size of how big the chart is.
I also tried just doing wdApp.Selection.Paste
is there a vba code the lets you paste and resize the chart? and make it smaller?