Question

The following code as you know chooses the data to Row 390:

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

What is the phrase to select automatically to the end of Column A as the 390 might be different in different files.
Many thanks

Was it helpful?

Solution

ActiveChart.SeriesCollection(1).Values = Range(Range("A2"), Range("A2").End(xlDown))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top