我創建一個折線圖的一些數據如何獲得最後一個單元格指數在Excel
Sub FinalTest()
ActiveSheet.Shapes.AddChart2(332, xlLineMarkers).Select
ActiveChart.SetSourceData Source:=Range("A2:D352")
ActiveChart.FullSeriesCollection(1).Name = "=sheet1!$C$1"
ActiveChart.FullSeriesCollection(2).Name = "=sheet1!$D$1"
ActiveChart.HasTitle = True
ActiveChart.ChartTitle.Text = "TEST"
ActiveChart.SetElement (msoElementLegendRight)
With ActiveChart.Parent
.Height = 325 ' resize
.Width = 3000 ' resize
.Top = 100 ' reposition
.Left = 350 ' reposition
End With
End Sub
我的最後一個單元格是D352和該指數的不同工作表變化。我怎樣才能改變代碼,使其通過使用最後使用的單元格索引動態地工作?
如果你的數據是在一個連續的塊,你可以使用'currentregion'。 – SJR