Private Sub G_Select(ByVal ElementID As Long, ByVal Arg1 As Long, ByVal Arg2 As Long)
Dim Z As String, S As Series, TSpl() As String
If ElementID = 3 And Arg2 > -1 Then
Set S = G.SeriesCollection(Arg1)
TSpl = Split(S.Formula, ",")
Set CelXY = Application.Range(TSpl(1) & ":" & TSpl(2))
CelXY.Interior.Color = RGB(255, 200, 200)
Set CelXY = CelXY.Rows(Arg2)
CelXY.Interior.Color = RGB(200, 255, 200)
End If
End Sub