how to select multiple data series in a chart?

R

REER

I have a line chart width 41 data series, the default line width is to wide
to really let me se the overall picture. Is it possible to either select
multiple data series, in order not to have to do this 41 times, or to change
the default line width of the charts?
 
J

Jon Peltier

Only one series can be selected at a time. You can format one series,
then select another and press F4 to repeat the formatting on that one,
etc. In 2007, F4 is not too reliable.

You could also run a macro:

Sub FormatLineWidths()
Dim srs As Series
For Each srs In ActiveChart.SeriesCollection
srs.Border.Weight = xlThin
Next
End Sub


- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top