Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

using aggr inside a set expression

Hi,

I need to create a complex set expression for a chart, and I'm trying to use an aggr function inside the set expression:

Sum({<Wave=, Edition={"=aggr(only({<Edition=, Wave={11}>} Edition), Edition)"}>}Value)

The target is to collect all waves and all the editions which belong to Wave=11.

But the chart fails to calculate.

Could you make a suggestion what is wrong with this set expression?

Thank you in advance,

Larisa

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Sum({<Wave=, Edition = p({<Wave = {11}>})>}Value)

View solution in original post

2 Replies
sunny_talwar

May be this:

Sum({<Wave=, Edition = p({<Wave = {11}>})>}Value)

Anonymous
Not applicable
Author

Thanks!