I have the following vba code obtained from the macro recorder for changing a data series in an xy scatterplot to a black diamond. Is there any way to edit this so that it does it for all series on a chart? I have about 50 series and would like the macro to go through each one and do the same thing. It would also be helpful to do it for certain series. Thanks!
Code:
Sub Format_RR_dataseries()
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.SeriesCollection(11).Select
With Selection
.MarkerStyle = 2
.MarkerSize = 7
.Format.Fill.ForeColor.ObjectThemeColor = msoThemeColorText1
.Format.Line.Visible = msoFalse
End With
Range("I14").Select
End Sub