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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
JuMo
Creator
Creator

Set Analysis to ignore filter

In one chart, i am using a set analysis to ignore the selection on the month filter

Sum({<[Calendar.Month]=>} Fact.Actual)

And it works correctly, it making the sum for all the month ignoring the month selected

However, when I introduce another factor to the set analysis, the sum is calculated only for the selected month

Sum({<[Calendar.Month]=>*<Product = {"Product 1"}>} Fact.Actual)

Shall I use another operator ?

Labels (2)
1 Solution

Accepted Solutions
JuMo
Creator
Creator
Author

Thanks you Sean, its not working

 

However I've tried with an outer set expression and it works ...

{<[Calendar.Month]=>} Sum({<Product = {"Product 1"}>} Fact.Actual)

 

... I don't know why

View solution in original post

2 Replies
seanbruton

Hi JuMo,

 

Please try this and see if it works for you.

Sum({<[Calendar.Month]=-,Product = {"Product 1"}>} Fact.Actual)

or

Sum({<[Calendar.Month]=,Product = {"Product 1"}>} Fact.Actual)

 

Regards

Sean

JuMo
Creator
Creator
Author

Thanks you Sean, its not working

 

However I've tried with an outer set expression and it works ...

{<[Calendar.Month]=>} Sum({<Product = {"Product 1"}>} Fact.Actual)

 

... I don't know why