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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Qstradamus
Contributor II
Contributor II

Alternate States using Set Analysis plus additional condition

I am trying to produce a visualization displaying SALES by REGION using two states (Group 1 and Group 2)

   Sum ({"Group 1"}Sales)

However, I also want to filter the sales by a specific PRODUCT (let's call it ABC)
How do I add this to the set analysis?  The following does NOT work:

   Sum ({<"Group 1",[Product]='ABC'>} Sales)

Labels (2)
1 Solution

Accepted Solutions
rwunderlich
MVP
MVP

 Sum ({"Group 1"<[Product]={'ABC'}>} Sales)

View solution in original post

2 Replies
rwunderlich
MVP
MVP

 Sum ({"Group 1"<[Product]={'ABC'}>} Sales)

Qstradamus
Contributor II
Contributor II
Author

That worked.  I can't thank you enough, Rwunderlich