Removing dummy series from my legend

RawlinsCross

Active Member
Joined
Sep 9, 2016
Messages
437
I have 15 series of data plotted against time on the x-axis. Some of the 15 columns contain numeric data and some contain #N/A. I have a macro that plots all 15.

If 13 of the columns contain #N/A ofcourse no data is plotted and only 2 of the columns that contain numeric data are plotted. But my problem is that the legend entries of all 15 columns show up even though only two series are plotted.

How can I write code that goes through my legend and removes those that correspond with #N/A columns?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
I did this to delete legend entries for the series I did not want displayed:
Code:
Sub RemoveLegendEntries()
    Dim i As Long
    For i = ActiveChart.SeriesCollection.Count To 1 Step -1
       If ActiveChart.SeriesCollection(i).Name <> "bbbb" Then
            ActiveChart.Legend.LegendEntries(i).Delete
        End If
    Next i
End Sub
I found I had to step through the LegendEntries from the high index value to the low or an "Automation Error" was generated.

The only way to repopulate the legend is to first delete it entirely with 'ActiveChart.HasLegend = False' and then recreate it with 'ActiveChart.HasLegend = True'.
 
Last edited:
Upvote 0
For each data set, I have a combo box with either "yes" or "no" added to them. When you select "yes" from anyone of the 16 data choices, it graphs those sets. The problem is that if you choose only 3 yes's it legends them all. So I'm trying to do something like this based on your example (which is not working).

The comobox's are from 20 to 35 corresponding to SeriesCollection 1 to 16.


Code:
Dim i As Long
For i = 35 To 20 Step -1
    If Me.ComboBox(i).Value = "No" Then
        ActiveChart.Legend.LegendEntries(i - 19).Delete
    End If
Next i
 
Upvote 0
Is it not deleting any legend entries?

You could add this line to watch the progress in the immediate window as you step through the loop:
Rich (BB code):
    If Me.ComboBox(i).Value = "No" Then

        Debug.Print ActiveChart.SeriesCollection(i - 19).Name

        ActiveChart.Legend.LegendEntries(i - 19).Delete
    End If
 
Upvote 0
This seems to have worked.

Code:
Dim i As Long
For i = 35 To 20 Step -1
    If Me.Controls("ComboBox" & i).Value = "No" Then
    Debug.Print ActiveChart.SeriesCollection(i - 19).Name
        ActiveChart.Legend.LegendEntries(i - 19).Delete
    End If
Next I
 
Upvote 0

Forum statistics

Threads
1,215,025
Messages
6,122,731
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top