precise positioning of objects

  • Thread starter Thread starter CycleMark
  • Start date Start date
C

CycleMark

Is it possible to precisely position graphic objects in
an Excel diagram? There does not appear to be any
explicit position parameters.
 
You need to use VBA:

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

- Jon
 
Back
Top