how to hide #N/A in chart

H

Hassan

Hi All,

how I can hide #N/A in bar chart, kindly give me full steps to hide in chart.

Thanks
 
J

Jon Peltier

#N/A or NA() is used so that points are not plotted in a line or XY chart,
allowing the gap to be spanned by a line. Since no marker is drawn, there
are no data labels which my show #N/A. In other chart types, #N/A is
interpreted as a zero value, so a bar is present but not generally visible
because of the zero value, but a data label may be present to show #N/A. For
these charts, it is better for the source data to contain "" rather than
#N/A. If you haven't gamed the source data to try hiding points, game it
like this to hide a failed lookup:

=IF(ISNA(<lookup>),"",<lookup>)

- Jon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top