Bubble charts

JRCBoston

Board Regular
Joined
Sep 19, 2003
Messages
129
Hi-

I am creating a bubble chart and was wondering if there is a way to color code the bubbles so that all bubbles with the same size are the same color. For instance, all size 1's are red, all size 2's are blue, etc.

Thank you.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Creating multiple colors usually involves creating a new data range for your chart that looks at the original data and creates individual series for each group by the color you want. Then after you create your chart you will need to change each series to the color that you want.

In this case you want size to have a unique color.

Easiest way is to group each size next to eachother and graph them as a series, then the next group and so on. Then each series will have a different color based on the groupings of size.

You can do this programitically by creating dummy series for your graph that finds all size 1 data points and adds them to the series, if it is a different size you will put an NA() in the if formula so that the chart will ignore this data point for this series and will only show your size 1's.

dummy series size 1 might look like this:

=if(original data series size=1, original data point, NA())

dummy series size 2:

=if(original data series size=2, original data point, NA())

This is how you make any chart change colors for different values like over budget = Red, under budget = Green.
 
Upvote 0

Forum statistics

Threads
1,224,618
Messages
6,179,917
Members
452,949
Latest member
beartooth91

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