Zero Values in chart

B

Bernard Liengme

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
 
R

Rajkumar

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
 
A

Andy Pope

Hi,

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

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

Cheers
Andy
 
Top