All right,
I am building a scatter plot chart that I want be very interactive. I have coded the workbook such that it allows the user to select which data set(s) to view and to turn data labels on and off. In addition to this, each series will have a name, but I want each specific data point to have its own name that will change based upon values listed in worksheet cells.
I have been able to accomplish all of the above, but now I want an easy way to repeat this for all data sets and all data points. I am thinking of a loop statement or a "for every x" type statement, but am not very familiar with these. For example I need something like the first few lines of the code below...
Sub Data_Labels()
'This doesn't work
Dim SeriesCollections As X
Dim Points As Y
For Every X and Y
'This does work
ActiveSheet.ChartObjects("Chart 5").Activate
ActiveChart.SeriesCollection(1).Points(3).Select
With Selection
.HasDataLabel = True
.DataLabel.Text = Range("N20")
End With
End Sub
Thoughts?
Thank you,
NicB.
Bookmarks