如何让图表忽略包含空格的单元格?
用于细胞的公式如下:
= IF(' PivotCL 30 +'!I5 ="","",' PivotCL 30 +'! I5 /' PivotCL 30 +'!$ G5)
答案 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
.