Plotting blank cells that have functions in them.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I keep a chart from plotting blank cells that have a formula in them?
i.e. =IF(ISERROR(D2/D3),"",D2/D3)
 
Use the NA function, instead of an empty string, e.g.:

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