1
我正在使用VBA創建一些我需要做的圖形。使用VBA讀取圖表屬性
基本上,我想要做的是自動創建第一個系列,然後第二個系列從第一個系列複製顏色和格式。
我試圖做到這一點的代碼,但沒有成功:
ActiveChart.SeriesCollection(a - 1).Select
ActiveChart.SeriesCollection(a).Border.ColorIndex = ActiveChart.SeriesCollection(a - 1).Border.ColorIndex
ActiveChart.SeriesCollection(a).MarkerBackgroundColorIndex = ActiveChart.SeriesCollection(a - 1).MarkerBackgroundColorIndex
ActiveChart.SeriesCollection(a).MarkerForegroundColorIndex = ActiveChart.SeriesCollection(a - 1).MarkerForegroundColorIndex
ActiveChart.SeriesCollection(a).MarkerStyle = ActiveChart.SeriesCollection(a - 1).MarkerStyle
能有人幫我如何從以前的系列讀取性能,並將其應用到下一個?
謝謝。