Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi Gilroy - Not sure if this completely answers your question, but to get to a chart embedded in a worksheet (as you have here), you'll want to go through the ChartObjects collection of the Worksheet object. For example, the following code will get you the last Chart on the active worksheet (if there are more than one) Dim mychart As Chart Dim icount As Integer icount = ActiveSheet.ChartObjects.Count If icount 0 Then Set mychart = ActiveSheet.ChartObjects(icount).Chart MsgBox CStr(mychart.ChartType) End If |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find within an embedded document object | Excel Discussion (Misc queries) | |||
Formula using array to find embedded value | Excel Discussion (Misc queries) | |||
Embedded Chart Versus Chart - ShowDetail Issue | Charts and Charting in Excel | |||
Links in Embedded doc within sheet don't change when sheet is copi | Excel Discussion (Misc queries) | |||
Embedded Chart in Excel Sheet | Charts and Charting in Excel |