使用VBA对Excel文档进行更改后,我的Excel文档中的图表不会更新。
我记得以前读过,可以通过创建新的数据系列来强制图表更新,然后立即再次删除它。
如何以不会导致错误或对我的图表造成永久性损害的方式执行此操作?
答案 0 :(得分:0)
假设您有一个名为chrt
With chrt.chart.SeriesCollection
'Create a new series
.NewSeries
End With
With chrt.chart
'Delete the newly created series
.SeriesCollection(.SeriesCollection.Count).delete
End With