Graph formatting lines

K

Kirsty

I have a graph, which has actual data until yesterday, and plan data. I have
in the data no value for the actual data after this day, but on my graph the
line drops to 0. How do I stop this?
 
D

David Biddulph

If you have a formula producing a zero or a null string, change it to
produce NA().

For example, change =IF(condition,value,"") to =IF(condition,value,NA())
 
Top