我已经编写了用于在图中命名系列的 vba 代码:
ActiveChart.SeriesCollection(1).name = "SPEC"
ActiveChart.SeriesCollection(2).name = "manju"
我的问题是我想使用 vba 代码找到特定的系列名称。在上面的代码中,我有两个系列。现在我想使用 vba 代码找到系列名称(manju)。
要SeriesCollection()
通过传递名称来访问,您可以:
MsgBox ActiveChart.SeriesCollection("manju").Name
这是可能的,因为index
inSeriesCollection(index)
实际上是Variant
类型,所以如果您传递一个String
类型并尝试按名称访问它,或者如果您传递一个Long/Integer
(或任何其他数字数据类型)来访问枚举器,编译器就会工作。
或迭代 SeriesCollection,将当前名称与“manju”进行比较:
For i = 1 to ActiveChart.SeriesCollection.Count
If ActiveChart.SeriesCollection(i).name = "manju" Then
MsgBox "Found it!"
Exit for
End if
Next