"sdubose99" <(E-Mail Removed)> wrote
in message news:(E-Mail Removed)...
>
> Jon, thanks very much. It helps to know I wasn't going completely crazy
> -- but I thought I was...
>
> Here's how far I got.
>
> http://img221.imageshack.us/my.php?image=chart8jo.jpg
>
> Is there a way to share the axis on the bottom so the new data point is
> in the proper relation to the other data? I thought about making the
> min and max scale match the bottom axis, but the scale on the bottom
> will increase or decrease depending on what the user enters in the
> "Length" cells.
If you select the top axis and press Delete, the XY points will use the
bottom axis.
> Is there a way to not show the zero values at the right side -- Series
> 4 and 5?
Build your own custom labels in a column next to the data, concatenating the
individual words to make the label, but incorporating an IF to turn it to ""
if the value is zero:
=IF(C5=0,"","Section "&B5&CHAR(10)&C5)
CHAR(10) is the linefeed character (or carriage return, I forget which, but
it breaks the label into two lines). Now use one of these fine third party
add-ins to apply this range of labels to the stacked bar series:
Rob Bovey's Chart Labeler,
http://appspro.com
John Walkenbach's Chart Tools,
http://j-walk.com/ss
Both are free and easy to use.
Actually, since your series are one point each, set up the labels in a
column to the left of the values, and include this column in the source data
range, so Excel uses them as series names. Then use the Show Series Names
option for data labels, and you don't need a chart labeling add-in, at least
not for this.
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______