> Hi All.
>
[quoted text clipped - 16 lines]
>
> Does anyone know how to do this?
Unfortunately this didnt work, it brought back #N/A which is not ideal as
this shows up in my graphs and also in the tables that i will be exporting to
word.
Any other ideas anyone??
Thanks in advance.
> How about something like this?
>
[quoted text clipped - 25 lines]
> >
> > Does anyone know how to do this?
Dave Peterson - 06 Jul 2007 15:17 GMT
Are you usually bringing a number to be used in the chart--or is this a label
for the chart.
If it's usually a number, the the #n/a shouldn't appear in the chart.
If you want to hide the value in the table, you could use conditional formatting
to hide the error (use a white font color on a white fill color).
If that doesn't work, maybe you can use two columns--one to bring back what you
need for the chart and then one to show what you want in the table (and MSWord).
=if(isna(a17),"",a17)
And hide the column that shows the #n/a's.
> Unfortunately this didnt work, it brought back #N/A which is not ideal as
> this shows up in my graphs and also in the tables that i will be exporting to
[quoted text clipped - 33 lines]
> > >
> > > Does anyone know how to do this?

Signature
Dave Peterson
BoRed79 - 09 Jul 2007 08:08 GMT
I think that I am getting a #N/A as I am also using the formula to bring back
the chart labels, as well as the data (to produce a dynamic top ten list).
> Are you usually bringing a number to be used in the chart--or is this a label
> for the chart.
[quoted text clipped - 48 lines]
> > > >
> > > > Does anyone know how to do this?
Harlan Grove - 06 Jul 2007 15:30 GMT
"BoRed79" <BoRed79@discussions.microsoft.com> wrote...
>Unfortunately this didnt work, it brought back #N/A which is not ideal as
>this shows up in my graphs and also in the tables that i will be exporting
>to
>word.
>
>Any other ideas anyone??
...
#N/A does not show up in Excel charts. It's treated as zero in bar, pie and
area charts, and it's ignored in line and scatter charts. How does it not
work in your charts?
As for display, you need to use TWO tables in Excel in situations like this.
One showing nothing (evaluating to "") for missing numeric values, which you
could use for subsequent calculations or exporting to Word. The other would
replace "" with #N/A for charting.
This is the STANDARD approach to doing this in Excel, so it's unlikely
you'll get a different answer from anyone else.