如何让Excel Graph忽略包含公式的单元格?

时间:2016-10-19 13:27:11

标签: excel excel-2013

如何让图表忽略包含空格的单元格?

用于细胞的公式如下:

= IF(' PivotCL 30 +'!I5 ="","",' PivotCL 30 +'! I5 /' PivotCL 30 +'!$ G5)

提前致谢! enter image description here

1 个答案:

答案 0 :(得分:0)

A quick & dirty approach would be to return NA() instead of an empty string "" in your formula:

=IF('PivotCL ... = "", NA() ,'PivotCL ...)

If your goal is to keep the data presentable, you could consider a conditional formatting with white font-color and Formula ISNA(...)=TRUE.