text position in charts

C

Chris

Is there a way to set chart text to an absolute position on a chart? I have
text pointing to a cell (which is different length for each spreadsheet) and
when I run a macro the text box that gets created is in a different position
each time. Is it possible to left justify the text in VBA? I tried changing
Increment to Absolute but that didn't work in this code:

Selection.ShapeRange.IncrementLeft 255.34
Selection.ShapeRange.IncrementTop -206.95

Thanks
 
J

Jon Peltier

I thought this was answered in another thread:

selection.shaperange.top=10
selection.shaperange.left=15

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top