'Color the secondary Axis
With MyChart1.Axes(xlValue, xlSecondary)
If ComboBox2.ListIndex = 1 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(2).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 2 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(3).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 3 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(4).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 4 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(5).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 5 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(6).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 6 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(7).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 7 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(8).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 8 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(9).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 9 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(10).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 10 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(11).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 11 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(12).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 12 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(13).Format.Line.ForeColor
ElseIf ComboBox2.ListIndex = 13 Then
.AxisTitle.Format.TextFrame2.TextRange.Font.Fill.ForeColor = MyChart1.FullSeriesCollection(14).Format.Line.ForeColor
End If
End With