Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Placement of a chart | Charts and Charting in Excel | |||
decimal placement in an excel chart? | Charts and Charting in Excel | |||
drill down worksheet placement (pivot tables) | Excel Discussion (Misc queries) | |||
Chart Placement | Excel Programming | |||
Chart placement | Excel Programming |