|
i do have a section and subsection in a groups, each section might have multiple subsections and i am performing avg on each subsection at report level. I want to change the back color for the subsection which will get minimum average score. While i am performing at backcolor expression like
(comments are locked)
|
|
did you tried iif(min(avg(score)) < avg(score),"blue","white")..? yes, but still same error...
Oct 12 '11 at 03:24 AM
Murali
I guess you cannot use nested aggregates in SSRS min(avg(score)), can you post the error in detail?
Oct 12 '11 at 03:28 AM
Cyborg
[rsAggregateofAggregate] The Value expression for the textrun 'Order_Count9.Paragraphs[0].TextRuns[0]' contains an aggregate function (or RunningValue or RowNumber functions) in the argument to another aggregate function (or RunningValue). Aggregate functions cannot be nested inside other aggregate functions.
Oct 12 '11 at 07:07 AM
Murali
Murali, the error message clearly says that you cannot nest the aggregate function. IS it possible to bring that Avg(Score) to separate column and then do aggregate on the new column, ie MIN(of New column)
Oct 12 '11 at 08:51 PM
Cyborg
(comments are locked)
|

