Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/reporting-services/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Reporting services SSRS 2008 R2中运行时的筛选器表达式_Reporting Services - Fatal编程技术网

Reporting services SSRS 2008 R2中运行时的筛选器表达式

Reporting services SSRS 2008 R2中运行时的筛选器表达式,reporting-services,Reporting Services,我在SSRS 2008 R2中为组级应用了一个过滤器表达式,如下所示: =((Fields!Cases_Shipped.Value >= Parameters!CasesShipped.Value And Fields!Stocked.Value In('','Yes','No')) Or (Fields!Cases_Shipped.Value < Parameters!CasesShipped.Value And Fields!Stocked.Value

我在SSRS 2008 R2中为组级应用了一个过滤器表达式,如下所示:

=((Fields!Cases_Shipped.Value >= Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('','Yes','No'))
Or
    (Fields!Cases_Shipped.Value < Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('Yes',''))) 

请帮帮我

错误消息告诉您问题所在-您尚未关闭括号。您缺少关闭第一个打开支架的最后一个选项

=(  (Fields!Cases_Shipped.Value >= Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('','Yes','No'))
Or
    (Fields!Cases_Shipped.Value < Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('Yes','')) )
=((字段!Cases\u Shipped.Value>=参数!CasesShipped.Value)
和字段!Stocked.Value In(“”,'Yes','No'))
或
(字段!Cases\u Shipped.Value<参数!CasesShipped.Value
和字段!Stocked.Value In('Yes',''))

错误消息告诉您问题所在-您尚未关闭括号。您缺少关闭第一个打开支架的最后一个选项

=(  (Fields!Cases_Shipped.Value >= Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('','Yes','No'))
Or
    (Fields!Cases_Shipped.Value < Parameters!CasesShipped.Value 
    And Fields!Stocked.Value In('Yes','')) )
=((字段!Cases\u Shipped.Value>=参数!CasesShipped.Value)
和字段!Stocked.Value In(“”,'Yes','No'))
或
(字段!Cases\u Shipped.Value<参数!CasesShipped.Value
和字段!Stocked.Value In('Yes',''))

上述表达式中缺少的您需要的回报


请在此表达式中添加所需的结果。

上述表达式中缺少的返回结果


请在此表达式中添加您想要的结果。

我已关闭了括号,但未在帖子中显示,请单击编辑按钮n您将看到相同的结果。它通过关闭括号来显示错误。好的,我编辑了你的文章,以便更好地显示你的代码,但是你输入的内容仍然缺少最后的结束括号。我关闭了括号,但它没有显示在文章中,请单击编辑按钮n你将看到相同的内容。它通过关闭括号来显示错误。好的,我编辑了你的文章,以便更好地显示你的代码,但是你输入的内容仍然缺少最后一个括号。