Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hello,
I know how to format a data series in a chart. I right-click on the data in the chart, select 'format data series, no problem. I want to format several series at the same time (eg line thickness, marker colour). Is there a way of doing this ?? Thanks KK |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi,
You can only select a single data series but you could use a macro. Here's a sample one with a couple of format options Sub FormatChart() Dim r As Series For Each r In ActiveChart.SeriesCollection r.Border.Weight = xlThin r.Shadow = True Next End Sub Mike "KRK" wrote: Hello, I know how to format a data series in a chart. I right-click on the data in the chart, select 'format data series, no problem. I want to format several series at the same time (eg line thickness, marker colour). Is there a way of doing this ?? Thanks KK . |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks for the help, can I ask a follow-up question. ?
I sometimes find it difficult to select the data series I want to format (there are several on my plot) After formatting one series, can I move to the next data series without exiting the 'format' window, ie is there a keyboard sequence or trick ? Thanks again KK "Mike H" wrote in message ... Hi, You can only select a single data series but you could use a macro. Here's a sample one with a couple of format options Sub FormatChart() Dim r As Series For Each r In ActiveChart.SeriesCollection r.Border.Weight = xlThin r.Shadow = True Next End Sub Mike "KRK" wrote: Hello, I know how to format a data series in a chart. I right-click on the data in the chart, select 'format data series, no problem. I want to format several series at the same time (eg line thickness, marker colour). Is there a way of doing this ?? Thanks KK . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Quickly Format Multiple Data Series in One chart | Charts and Charting in Excel | |||
chart with two data series and two colors for each data series | Charts and Charting in Excel | |||
Format Data Series in a Chart | Excel Worksheet Functions | |||
chart data series -- plot a table as a single series | Charts and Charting in Excel | |||
1 Chart - Different series format | Charts and Charting in Excel |