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

Hello,
I would like to place a chart at a certain location on a worksheet. e.g.,
the upper left hand corner of the chart starting at cell C1. Is there an
easy way to do this?

thanks,

bill


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Placement of Chart in Worksheet

You can manually drag the chart to the desired location, or use
VBA code like the following:


Dim ChtObj As ChartObject
Set ChtObj = ActiveSheet.ChartObjects(1)
ChtObj.Top = Range("C3").Top
ChtObj.Left = Range("C3").Left


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"Bill" wrote in message
k.net...
Hello,
I would like to place a chart at a certain location on a
worksheet. e.g., the upper left hand corner of the chart
starting at cell C1. Is there an easy way to do this?

thanks,

bill



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
drill down worksheet placement (pivot tables) jbJB Excel Discussion (Misc queries) 1 November 15th 06 08:19 PM
Chart Placement Dr.Schwartz Excel Programming 1 August 24th 04 01:03 PM
Chart placement David Excel Programming 2 April 18th 04 12:55 PM


All times are GMT +1. The time now is 05: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"