Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

show total not depending on selection

Good morning,

I have being trying now for quite a bit to solve my problem but could not find a solution. I tried with set analysis, aggr, total and looked at Qlik help, youtube videos and qlik community posts.

I enclose a sample file.

On last column I would like to show the cashed platform's total once I select one or more games but of course not all of them.

I will appreciate your help with this matter.

Thanks

Antonio

1 Solution

Accepted Solutions
sunny_talwar

Check the attached:

Capture.PNG

Expression:

=If(GetSelectedCount([game name]) = 0, Sum([money cashed by single game]),

If(Sum([money cashed by single game]) > 0,Sum(TOTAL <[platform name]> {<[game name]>}[money cashed by single game])))

View solution in original post

4 Replies
sunny_talwar

Not sure what you are looking for? You just don't want the total to change or do you want the rows to stay intact also based on selection in game name? Also there are 4 charts in your sample, which chart are we looking at?

Anonymous
Not applicable
Author

Hi Sunny,

In the picture I am showing what I would like to see when I select some games. I wish to have in the last column the total of the platform that does not have to change when I select the games. The two table are the same: one straight and the other pivot.

wished result.jpg

Thanks

Antonio

sunny_talwar

Check the attached:

Capture.PNG

Expression:

=If(GetSelectedCount([game name]) = 0, Sum([money cashed by single game]),

If(Sum([money cashed by single game]) > 0,Sum(TOTAL <[platform name]> {<[game name]>}[money cashed by single game])))

Anonymous
Not applicable
Author

Thank You Sunny!!!

Antonio