1
votes

My original Excel bar chart looks like:

enter image description here

I want to add another series for 2014 data, as shown below:

enter image description here

I want the 2014 series to be scatter points overlaid on the original bar chart. However, when I add the 2014 series to the chart and change its chart type to Scatter, I obtain the following chart:

enter image description here

How can I change the bar chart back to its varying palette of colors as it is in the original chart, and change the 'Current' axis label to its original format which lists the different categories?

Ideally I'd want a time-efficient solution as I'll have to repeat this process with a number of similar charts.

2

2 Answers

0
votes

I'm not sure if this is possible to do (quickly, elegantly, and/or without VBA) with multiple chart types. A few possible alternatives:

  1. If you are only showing the difference from 2014, is a chart even necessary? Would a table be a better visualization?

  2. Since it appears you are trying to plot the difference, why not plot this as a line graph?

Line Graph

  1. Better yet, just plot the difference.

Delta Graph

0
votes
  1. Start with a graph of one data series:

enter image description here

  1. Add a second data series using Chart Tools|Design|Select Data:

enter image description here enter image description here

  1. Click the Add button and add data (series values) for a second series. Your chart should look like:

enter image description here

  1. In the chart select the second data series. Then use the Chart Tools|Design|Change Chart Type tools to change the chart to a Line Chart.

enter image description here

From here on in it's formatting.

  1. Select the second data series and do Chart Tools|Format|Format Selection to set the line color to no line. You can do any other formatting at this time.

  2. Select the first data series and select each bar one at a time. Then use the Shape Fill button to customize each bar color:

enter image description here

Hope that helps!