precise positioning of objects

C

CycleMark

Is it possible to precisely position graphic objects in
an Excel diagram? There does not appear to be any
explicit position parameters.
 
J

Jon Peltier

You need to use VBA:

' Move and resize selected object
selection.left=5
selection.top=100
selection.height=55
selection.width=40

- Jon
 
Top