通过VB选择Excel图表数据。

时间:2014-05-14 09:20:50

标签: excel-vba vba excel

您知道以下代码选择行390的数据:

 ActiveChart.SeriesCollection(1).Values = "='1'!$A$2:$A$390"

自动选择到A列末尾的短语是什么,因为390在不同的文件中可能有所不同 非常感谢

1 个答案:

答案 0 :(得分:-1)

ActiveChart.SeriesCollection(1).Values = Range(Range("A2"), Range("A2").End(xlDown))