在过去的几周里,我一直在使用 MS Reporting 服务来自动化我们的“工作状态”报告。我被要求突出显示空白或 0 的单元格,以便我们可以更快地选择它们。
取下图中的“查询参考”列。它只会是以下任何一种:
- 参考编号
- 空白的
- 一个数字 0
我尝试了以下方法:
//This highlights the cells with 0
=IIF(Fields!EnquiryRef.Value = "0", "Yellow", "No Color")
//This highlights the cells which are blank
=IIF(Fields!EnquiryRef.Value = "", "Yellow", "No Color")
//This seems to highlight neither of the two
=IIF(Fields!EnquiryRef.Value = "0" OR Fields!EnquiryRef.Value = "", "Yellow", "No Color")
我似乎找不到涵盖 0 和空格的表达式。