ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Looping Through Charts (https://www.excelbanter.com/excel-programming/298987-looping-through-charts.html)

Mike Waldron[_2_]

Looping Through Charts
 
Hi Chris

This isn't a easy as it looks. Excel handles charts on
their own sheet as CHARTS but charts in a worksheet as
CHARTOBJECTS. Here are 2 methods for each.

Sub test()

' use for charts on their own sheet
chtcnt = ActiveWorkbook.Charts.Count
For i = 1 To chtcnt
your code
Next i
or
dim cht as Chart
For Each cht In Charts
cht.Select
your code
Next

'use for charts on a worksheets with data
chtobcnt = ActiveSheet.ChartObjects.Count
For i = 1 To chtobcnt
your code
Next
or
Sheets(your worksheet).Select
Dim ocht As ChartObject
For Each ocht In ActiveSheet.ChartObjects
ocht.Select
your code
Next
End Sub
-----Original Message-----
How do I loop through charts, not embedded charts but a

chart that is in't own sheet , then run a script to change
the chart. Then on to the next chart.

Thanks, JD
.


JD/Anon

Looping Through Charts
 
Thanks everyone. I got it to work from your hel
JD


All times are GMT +1. The time now is 07:03 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com