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

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -