How do I ignore Graphs zero values.

G

Guest

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.
 
R

R..VENKATARAMAN

select the chart.
goto tools options and check plot empty cells as any of the three chices
given there.
 
A

Andy Pope

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy
 
G

Guest

Working thanks - as you said, already tried the first suggestion but as it
was a formulae, it still showed.
 
G

Guest

I have tried doing a conditional format on the #N/A but it does not seem to
work. What do you need to specifically put in the conditional format. I have
tried #N/A, NA(), N/A ?
 
J

Jon Peltier

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

- Jon
 
G

Guest

Jon

I have done this but in an earlier discussion Andy suggested after doing the
formula you: " Use conditional formating to hide the #N/A". THis is the part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.
 
D

David Biddulph

I suggest you read Jon's answer again. He's told you exactly how to do it.
--
David Biddulph

AR said:
Jon

I have done this but in an earlier discussion Andy suggested after doing
the
formula you: " Use conditional formating to hide the #N/A". THis is the
part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.
....
 
G

Guest

Thanks Jon for the How To Conditional Format. I wasn't using Formula Is I was
using Cell Is
 
M

MCC

Really important because it is NOT obvious through the prior instructions in
this change: you have to set the conditional formatting for a single cell as
decribed and then copy the format with the paintbrush to all the other cells.
You can NOT select a range of cells and set the formula based conditional
formatting for them all at the same time.
 

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