Jon Peltier can stand on his roof and shout in to a megaphone “Use Bar Charts, Not Pies“, but the fact remains that most of us use pie charts sometime or other. In fact I will go ahead and say that pie charts are actually the most widely used charts in business contexts.
Today I want to teach you a simple pie chart hack that can improve readability of the chart while retaining most of the critical information intact.
We will take the pie chart on left and convert it to the one on right. The beauty of this trick is, it is completely automatic and all you have to do is formatting.
Interested? Then just follow these steps. [more examples and commentary on pie charts]
1. Select Your Data Create a Pie of Pie Chart
Just select your data and go to Insert > Chart. Select “Pie of Pie” chart, the one that looks like this:
At this point the chart should look something like this:
2. Click on any slice and go to “format series”
Click on any slice and hit CTRL+1 or right click and select format option. In the resulting dialog, you can change the way excel splits 2 pies. We will ask excel to split the pies by Percentage. (In excel 2003, you have to go to “options” tab in format dialog to change this).
Select “Split series by” and set it to “percentage”. Specify the percentage value like 10%.
3. Format the Second Pie so that it is Invisible
Individually select each slice in the second pie and set the fill color to “none”. You can speed up this step by setting first slice’s fill color to none and then using F4 key to repeat the last action (ie setting color to none) on other slices.
That is all. We have successfully converted a gazillion sliced pie chart to something meaningful and simple.
Additional commentary on Pie charts
Pie chart is not the devil, a pie chart that fails to tell the story is. I think we make pie charts because they are safe. Next time you set out to make a pie chart, I suggest you to spend a minute and think about,
- What is it that I am trying to tell here?
- How can a Pie chart help my audience understand my point?
- Can I use an alternative to pie chart?
I can promise you that in most situations using an alternative is better and easier than you thought. After all, that is why Peltier is on his roof.
One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”
Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.
I added a new sheet, and named the ranges for Sara and James.
Maybe something like:
B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))
Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.