Microsoft SQL Reporting Services条件格式设置OR表达式问题

时间:2013-06-27 09:09:55

标签: sql-server reporting-services ssrs-2008

过去几周我一直在玩MS报告服务,以便自动化我们的“工作状态”报告。 我被要求突出显示空白或0 的单元格,因此我们可以更快地将其拾取。

在下图中选择“查询参考”列。它只会是以下任何一种:

  • 参考编号
  • 空白
  • 数字0

Reporting services

我尝试了以下内容:

//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和空白的表达式。

1 个答案:

答案 0 :(得分:0)

尝试切换!

result.txt

根据您的情况调整它,它应该可以正常工作!