Zero Values in chart

  • Thread starter Thread starter Rajkumar
  • Start date Start date
R

Rajkumar

Hi,

Is there any way to avoid displaying zero values in a chart.

Raj
 
Assuming you mean you want empty cells not to be treated as zeros:
1) click on chart; use Tools|Options|Chart and specify how you want blanks
to be treated
or
2) replace blanks by =NA()
best wishes
 
Thanks Bernard,

But my Source Data is depended on some formulaes,hence when the result
of them returns zero,the same gets displayed in the chart also.

Is there any other way.

I am sure you can help me.

Regards,
Rajkumar
 
Hi,

Use Bernard's suggestion of NA() in your formula. Something like,

=IF(test<>0,test , =NA() )

Cheers
Andy
 
Take out the internal "=":

=IF(test<>0,test,NA())

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
 

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

Back
Top