Please note javascript is required for full website functionality.

Broken Charts

Broken Charts

This article shows you how to create “breaks” in line charts when the chart data has been calculated rather than input. By Liam Bastick, director with SumProduct Pty Ltd.

Query

I am charting the past 24 months’ sales figures which have been linked rather than input – except some data is missing. I want to produce a chart that will display as follows (colours are allowed to vary):

Chart Requirement

If data is missing, I want a “broken” chart as above. This chart should update automatically if the data were amended:

Updated Chart Example

I would prefer not to use macros.

Advice

It doesn’t take long in this problem to realise that there is an issue. The key problem is that the chart data is linked to calculations elsewhere, e.g. it could be of the form

=IF(Sheet1!A1=”",”",Sheet1!A1).

If the data were simply input, plotting a standard line chart would give you the desired result, viz.

Line Chart with Data Simply Input

Easy!

The problem is that in this bespoke problem the apparently blank cells in the data source contain a formula and line charts in Excel do not cope with this particularly well:

Line Chart with Linked Data

By default, the blank cells are assumed to be zeros, so the chart is presented potentially erroneously. The chart options in Excel do allow the end user to make modifications. To make such changes, select the chart and then invoke the ‘Select Data Source’ dialog box (ALT + JC + E in Excel 2007 onwards):

Hidden and Empty Cells Selection

In the bottom left-hand corner of the dialog box, if you click the ‘Hidden and Empty Cells’ button, the following dialog box appears:

Hidden and Empty Cells Selection (Continued)

To the inexperienced – and to those who speak English! – selecting the “Gaps” option should give us the desired result, but alas, not one of the three options presented, will help us here (when line charts are to be used).

This dialog box is useful though; many advanced users are unaware of the ‘Show data in hidden rows and columns’ check box here, which when ticked allows hidden data to be displayed on a chart. If you are not aware of this tip, you may wish to add this one to your repertoire.

So how do we resolve this?

The common technique to circumvent this issue is to create additional line charts that are the same colour as the background which overlay these erroneous lines, recreating the blanks. This requires sophisticated formulae and various overlays depending upon how many data points and breaks there are, i.e. there is not one formula / chart data set that fixes every possible combination.

The problem is, this technique does not work well in practice with variable numbers of data points and missing data.

I have an alternative solution which I think fits in the “one size fits all” category. My method is to hereby be known as The Cheat Method. This can be followed by opening the attached Excel file.

The first part of my proposed solution is to add two columns to the source data as follows:

Data Input Extension

The data in columns E and F are the usual chart data. Column G, the ‘Revised Sales’ column contains a formula. For example, if the data were in the cells illustrated as in the example above, the formula in cell G13 would be:

=IF(F13=”",NA(),F13).

This formula simply puts #N/A in the cells where the corresponding precedent value appears blank. This is useful as it prevents charts from plotting data in various chart types – it just doesn’t work for line charts. This doesn’t matter though as we will be “cheating”.
How? We plot the Column G data as an area chart with No Fill for the area, just a coloured border – not a line chart – making the horizontal (x) chart axis slightly wider to disguise the bottom of the area chart as follows:

Example Area Chart

Now, we just need to hide the vertical lines. Unlike in a line chart where these lines to zero may be slanted, these lines will always be vertical and hence can be easily hidden using a column chart. The data for this column chart is found in column H, the ‘Mask’ column, which also contains a formula, albeit a slightly more complex one upon first sight. For example, the formula in cell H13 would be:

=IF(OR(IFERROR(G12,)=Data_Heading,IFERROR(G14,)=”",ISERROR(G12),ISERROR(G14)),IFERROR(F13+1,),0).

Data_Heading is the range name for cell B12 (perhaps I should have called it Vitamin…) to attempt to make the formula a little clearer. The IFERROR formulae used only work in Excel 2007 onwards, but can be replaced with IF(ISERROR()) for earlier versions of Excel and are there just to ensure calculations still work where the referred cells contain #N/A, which will then mean the formulae ignore them rather than produce #VALUE! errors, etc.

The result if this formula is that it adds one to the first and last values and to the first and last data points in a broken sequence; on all other occasions, the value is zero. In other words, the non-zero values in the ‘Mask’ column are there to hide the vertical lines in the area chart above.

Creating a column chart with no border and a fill colour the same colour as the chart background produces the desired result:

Example Area Chart With Masking Columns

Voila! It looks like a line chart and can work with more data points added (this is why the example data in the attached Excel file is contained within a Data Table so that additional points can be added easily). Unlike other solutions this does not rely on how many breaks there are and the number of data points. I hope you agree it is a fairly straightforward solution once you get your head around the formulae.

If you have a query for this section, please feel free to drop Liam a line at liam.bastick@sumproduct.com or visit the website www.sumproduct.com

Newsletter