I have a chart called INCOMEGRAPH.
I wrote a macro to remove a series if the chart was selected.
But I would like to not select the chart just to delete.
I thougth this might work
But it does not. How would I refer to a chart without making it ActiveChart?
Thanks for taking a look!
I wrote a macro to remove a series if the chart was selected.
But I would like to not select the chart just to delete.
I thougth this might work
Code:
With Chart("INCOMEGRAPH")
.SeriesCollection("JAN").Delete
End With
But it does not. How would I refer to a chart without making it ActiveChart?
Thanks for taking a look!