Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Scott Wagner wrote:
How do I use that in this macro? where do I need to place it, and do I need any other code to make it work? Thanks, Scott "MisterEd" wrote: It looks like your chart was not selected. Here is an example of selecting a chart embedded in "Sheet1": Worksheets("Sheet1").ChartObjects(1).Select You place it right before first ActiveChart statement. You did not say if the chart is embedded or in it's own sheet --------------------------------------------------------------------------------- For embedded chart: ' Select chart that is embedded in Sheet1 Worksheets("Sheet1").ChartObjects(1).Select 'Store the formula for the first series in "xVals". xVals = ActiveChart.SeriesCollection(1).Formula --------------------------------------------------------------------------------- Or for standalone chart in it's own sheet ' Select chart that is in new sheet called Chart2 Charts("Chart2").Select 'Store the formula for the first series in "xVals". xVals = ActiveChart.SeriesCollection(1).Formula --------------------------------------------------------------------------------- BTW, the following statement was not working for me. Since I do not have all you code I can't tell what's up with it. I commented it out to test the rest of the code ActiveChart.SeriesCollection(1).Points(Counter).Da taLabel.Text = _ Range(xVals).Cells(Counter, 1).Offset(0, -1).Value |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro recorded... tabs & file names changed, macro hangs | Excel Worksheet Functions | |||
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort | Excel Worksheet Functions | |||
how to count/sum by function/macro to get the number of record to do copy/paste in macro | Excel Programming | |||
macro to delete entire rows when column A is blank ...a quick macro | Excel Programming | |||
Start Macro / Stop Macro / Restart Macro | Excel Programming |