RDLC报告设计器清除过滤器

时间:2015-01-19 09:09:15

标签: c# visual-studio-2010 filter reportviewer rdlc

那里的RDLC专家?我需要用表达式

清除过滤器

如果参数为空或空,我不想过滤..只有当参数包含值时才需要过滤。但我无法达到类似下面的代码。我在我的过滤器中使用了这个表达式(如果客户ID等于null,则不要过滤其他过滤器。)

=IIf(Fields!Customer_ID.Value = "","", Fields!Customer_ID.Value)

1 个答案:

答案 0 :(得分:0)

为了检查空值,你做错了事;应该将NULL检查为=IIf(IsNothing(Fields!Customer_ID.Value),"", Fields!Customer_ID.Value)