Charting

  • Thread starter Thread starter Dave Jones
  • Start date Start date
D

Dave Jones

I have a value in Column A and a calculated value in column B
=if(A1,A1*14,"")

I want to plot column B on a chart, however where there is no data in A then
the chart plots B as a zero, but I don't want it to plot anything if there
is no data. Can anyone help this relative novice?

Thanks in anticipation
Dave
 
Hi,

Charts will treat "" as zero. As charts treat all text within value
ranges as zero. So instead use NA() in your formula.

=if(A1,A1*14,NA())

Cheers
Andy
 

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