What is causing a scope parameter error in my SSRS chart?

限于喜欢 提交于 2019-12-22 07:54:09

问题


Why am I getting this error in my chart? (Chart Image)

I am using this expression in the chart:

Series:

=Sum(Fields!Mins_Att.Value)/Sum(Fields!Mins_Poss.Value)

Series 1: 

=Sum(Fields!Mins_Att.Value, 
         "Chart2_CategoryGroup2")/Sum(Fields!Mins_Poss.Value, "Chart2_CategoryGroup2")

and I am getting this error:

The Y expression for the Chart has a scope parameter that is not valid for an aggregate function. The scope parameter must be set to a string constant that is equal the name of group, data region or name of dataset.


回答1:


The scope of "Chart2_CategoryGroup2" doesn't exist in the report.



来源:https://stackoverflow.com/questions/35315082/what-is-causing-a-scope-parameter-error-in-my-ssrs-chart

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!