如果参数为空或空,我不想过滤..只有当参数包含值时才需要过滤。但我无法达到类似下面的代码。我在我的过滤器中使用了这个表达式(如果客户ID等于null,则不要过滤其他过滤器。)
=IIf(Fields!Customer_ID.Value = "","", Fields!Customer_ID.Value)
答案 0 :(得分:0)
为了检查空值,你做错了事;应该将NULL检查为=IIf(IsNothing(Fields!Customer_ID.Value),"", Fields!Customer_ID.Value)
。