Omitting Zeros in a chart

S

spudsnruf

Hello, I have a simple line chart, generated from a list of numbers, many of
the numbers are zero, which I dont wnat to show up on the chart. At the
moment, they show up as a point on the bottom of the horizontal axis. How do
I make sure they dont show if zero please? Thank you.
 
P

Pete_UK

Replace them with blanks if they are just numbers. If they are
returned from a formula, you could do this:

=IF(your_formula=0,NA(),your_formula)

This will return an error instead of zero (which can be hidden using
conditional formatting if you don't want to see them), and errors will
not show on your chart.

Hope this helps.

Pete
 
L

Luke M

To make a chart skip a point, and not count it as zero, have it reutrn the
#N/A value. In formual form, this would be:
=If(A2=0,NA(),A2)
 

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