Ignore " " values

P

Phil Hageman

The following formula (typical) provides point data for a
plotted series. Problem is, when the cell holding the
data is blank (" "), the series drops to zero. Is there a
way to have the chart ignor the " " values?

=IF(Customer!U27<>"",Customer!U27,"")
 
D

dvt

The following formula (typical) provides point data for a
plotted series. Problem is, when the cell holding the
data is blank (" "), the series drops to zero. Is there a
way to have the chart ignor the " " values?

=IF(Customer!U27<>"",Customer!U27,"")

Relplace the "" with an N/A error. For example,

=IF(Customer!U27<>"",Customer!U27,NA())
 

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