Moving Chart Objects

  • Thread starter Thread starter Matt
  • Start date Start date
M

Matt

I have created a Pie Chart object and am looking for a way
to move the chart to a designated location (preferrably
acell position)on the worksheet. Does anyone have any
thoughts on how to do this?

Thanks.
 
with ActiveSheet.ChartObjects("mychart")
.top=range("D3").top
.left=range("D3").top
end wit
 
Not sure how this looks in Excel forum, but here in the newsgroup the
period/fullstops have been removed

with ActiveSheet.ChartObjects("mychart")
.top=range("D3").top
.left=range("D3").Left
end with

also, .left=range("D3").top was a typo - corrected above.
 
How can I do this with the active chart? I want to create a chart, move it to a specified position (A1), create another chart and move it to a different position (A20), and so on

Thanks

Ar

----- Tom Ogilvy wrote: ----

Not sure how this looks in Excel forum, but here in the newsgroup th
period/fullstops have been remove

with ActiveSheet.ChartObjects("mychart"
.top=range("D3").to
.left=range("D3").Lef
end wit

also, .left=range("D3").top was a typo - corrected above
 
with ActiveChart.Parent
.top=range("A1").top
.left=range("A1").Left
end with

--
Regards,
Tom Ogilvy


Art said:
How can I do this with the active chart? I want to create a chart,
move it to a specified position (A1), create another chart and move it to a
different position (A20), and so on.
 

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

Back
Top