|
Re: Selected Non-Contiguous Data Not On Axis
Hi,
Does seem strange.. I downloaded your example file and created a new chart with the Month Names as Axis labels with no problem.
Anyway, a qucik one to fix:
Click on a pie segment in your chart.
If your formula bar you should see the following formula :
Code:
=SERIES(,,'Semiannual Financial Projection'!$B$14:$G$14,1)
Note the two commas just inside the left hand bracket
Between the first and second comma enter the following:
Code:
'Semiannual Financial Projection'!$B$3:$G$3
The formula should now look like this:
Code:
=SERIES(,'Semiannual Financial Projection'!$B$3:$G$3,'Semiannual Financial Projection'!$B$14:$G$14,1)
The syntax for a the chart formula is :
=SERIES([Series Name] comma [Axis labels reference] comma [Series values])
Hope this helped
|