To work around this behavior, you can interpolate missing data points
and format the area chart; the result is similar to the way the
Interpolated option works with other charts.
To see an example that demonstrates the workaround, follow these steps:
- Type the following data in a new worksheet:
A1: 1
A2: 2
A3:
A4:
A5: 5
- Create an area chart based on the data in step 1.
Your area chart drops off to the x-axis between the third and
fourth data points.
- In cell B1, type the following formula:
=($A$5-$A$2)/(ROW($A$5)-ROW($A$2))
This formula calculates the "interpolation step value" between the two
known values that lie at the ends of the missing value (2 and 5).
- In cell A3, type the following formula:
=A2+$B$1
- Use the fill handle to fill the formula down to cell A4.
The resulting filled data is:
A1: 1
A2: 2
A3: 3
A4: 4
A5: 5
Your area chart does not drop down to zero for the missing data points.