What causes a parameter parameter error in my SSRS diagram?

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

I use this expression in a 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 get this error:

The expression Y for the diagram 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 to the name of the group, data region, or dataset name.

+4
source share
1 answer

The scope "Chart2_CategoryGroup2" does not exist in the report.

+1
source

Source: https://habr.com/ru/post/1628115/


All Articles