counting charts

D

dstiefe

I am trying to write the code that counts the charts (embedded charts) on a
worksheet.

thank you
 
O

optionbase1

use the

for n = 1 to worksheets.count
numberOfCharts = numberOfCharts + worksheets(n).charts.count
next n


(check my syntax ...)
 
Top