counting charts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

thank you
 
use the

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


(check my syntax ...)
 
Back
Top