Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Alternate State whit Set Analysis

Hey Community,

im usin 3 group whit Alternate State and my problem is that i need to show at the Pivot table the sum of value for what was selected in each group from above,

e.g 

Group 1 > The client choose Country A and if he will choose formula 1 it will show formula 1, if he will choose formula 2 it will show 2 and if he choose nothing it will show 1+2 .

the same for all the groups.

Thanks in advance


Capture.JPG

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

I try this

=Aggr(Sum({Group1}CIF_PRICE_VALUE)+Sum({Group2}CIF_PRICE_VALUE)+Sum({Group3}CIF_PRICE_VALUE)+Sum({Group4}CIF_PRICE_VALUE)+Sum({Group5}CIF_PRICE_VALUE),COUNTRY,Period_DESC)

It must use agrr

View solution in original post

6 Replies
tresesco
MVP
MVP

Try expression:

Sum({Group1}Value)+Sum({Group2}Value)+Sum({Group3}Value)

Not applicable
Author

look at attached qvw.

sunny_talwar

Can this also work (in all scenarios)?

Sum({Group1+Group2+Group3}Value)

sunny_talwar

Now that I think about it, the two expressions might give different output.

Sum({Group1}Value)+Sum({Group2}Value)+Sum({Group3}Value)

This will sum the Value twice or thrice if it comes into selection for two or three Groups.

Sum({Group1+Group2+Group3}Value)

This will only combine all the selection and show the Value once.

Did I interpret this correctly?

Anonymous
Not applicable
Author

I try this

=Aggr(Sum({Group1}CIF_PRICE_VALUE)+Sum({Group2}CIF_PRICE_VALUE)+Sum({Group3}CIF_PRICE_VALUE)+Sum({Group4}CIF_PRICE_VALUE)+Sum({Group5}CIF_PRICE_VALUE),COUNTRY,Period_DESC)

It must use agrr

Anonymous
Not applicable
Author

Thank you but i use the function agrr becuse the sum was not correct for each country

but your help was more them ok !