需要正确的SSRS嵌套IIf语法

时间:2012-03-28 01:37:42

标签: service reporting-services nested reporting iif

我有以下表达式。有人可以告诉我为什么打印0。

=IIF(Parameters!StartMonth.Value <= 1 And Parameters!EndMonth.Value >= 1, ReportItems!txtTotal1.Value, 
IIF(Parameters!StartMonth.Value <= 2 And Parameters!EndMonth.Value >= 2, ReportItems!txtTotal2.Value,
IIF(Parameters!StartMonth.Value <= 3 And Parameters!EndMonth.Value >= 3, ReportItems!txtTotal3.Value, 0)))

由于

1 个答案:

答案 0 :(得分:0)

我认为如果Parameters!StartMonth.Value是&gt; 3,你的陈述将返回0。