Plotting blank cells that have functions in them.

S

Spock

How do I keep a chart from plotting blank cells that have a formula in them?
i.e. =IF(ISERROR(D2/D3),"",D2/D3)
 
D

Debra Dalgleish

Use the NA function, instead of an empty string, e.g.:

=IF(ISERROR(D2/D3),NA(),D2/D3)
 
Top