我正在尝试创建宏以在 Excel 2010 中构建图表。
如果我录制一个宏,它会给我以下代码:
ActiveSheet.Shapes.AddChart.Select
ActiveChart.SetSourceData Source:=Range("'Sheet1'!$A$1:$I$15")
ActiveChart.ChartType = xlColumnStacked
但是当我重新运行它时,它给了我以下错误:
运行时错误“1004”:应用程序定义或对象定义错误。
我尝试了许多不同的变化:
With ActiveSheet.ChartObjects.Add _
(Left:=100, Width:=690, Top:=75, Height:=375)
With .Chart
.Parent.Name = "Chart MVO"
.HasTitle = True
.ChartTitle.Text = "MVO (628) CF and DS Delivery Performance"
End With
End With
但是每个都给出不同的运行时错误。我究竟做错了什么?