0
新しいchart1シートを追加し、sheet1からseries1を私の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
これを行う方法を教えてください。..アドバンス
で おかげ