Moving graph/Chart to specific location with VBA in MS WORD 2013 -


i generated graph using vba , have 1 specific bookmark in current word document. challenge move generated graph bookmark location. searched lot in vain.

can body me in getting vba code this. lot time.

try playing desired size/position

with activesheet.chartobjects("chart 1")      .height = 325 ' set height      .width = 500 ' set width      .top = 100 ' top position      .left = 200 ' left position end 

i suggest, guessing @ top , left position trial , error figure out exact position need in.


Comments