0
我想添加一個新的chart1工作表並將sheet1中的系列添加到我的chart1工作表。如何將系列添加到圖表
這裏是我的代碼...
Charts.Add
With ActiveChart
.ChartType = xlLine
.HasTitle = True
.ChartTitle.Text = "Closing Price"
.SeriesCollection.NewSeries
.FullSeriesCollection.XValues = "=Sheet1!$A$2:$A$741" '<<<<This is the xvalue
.FullSeriesCollection.Values = "=Sheet1!$B$2:$B$741" '<<<<This are the value
End With
請告訴我該怎麼做..提前