Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default Chart Placement

I have added a new chart (chart.add) in my code, but how can I place the
charts upper left corner at a certain cell - say C3? If I cant use a cell as
a reference how can I then place my chart? Note that I dont want to move the
chart, but place the chart right as it gets created.

Thanks
The Doctor
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 17
Default Chart Placement

You can use the Top and Left properties of the cell and
the chart to line them up together.

'After the chart is created
With ActiveSheet.ChartObjects("Chart 1")
.Activate
.Top = Range("C3").Top
.Left = Range("C3").Left
End With

tod

-----Original Message-----
I have added a new chart (chart.add) in my code, but how

can I place the
charts upper left corner at a certain cell - say C3? If

I cant use a cell as
a reference how can I then place my chart? Note that I

dont want to move the
chart, but place the chart right as it gets created.

Thanks
The Doctor
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Placement of a chart PCLIVE[_2_] Charts and Charting in Excel 1 January 25th 09 09:37 PM
decimal placement in an excel chart? Ron Charts and Charting in Excel 1 March 8th 08 02:12 AM
Name Placement lsmft Excel Discussion (Misc queries) 7 March 2nd 06 12:16 AM
Chart placement David Excel Programming 2 April 18th 04 12:55 PM
Bar placement Beto[_3_] Excel Programming 2 January 15th 04 05:15 PM


All times are GMT +1. The time now is 09:35 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"