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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis with partial selection

I have a set anaylsis formula I am working on that has me stumped. Is there a way to write this to ignore all user selections except one field? Below is my formula. The goal is to count all products for a specific month regardless of what the user has selected with the exception of the FILTER_FLAG field, in which case I need to use their selected value.

 

Count(TOTAL <PRODUCT> {1<Month={"$(=MonthName(vEmergCur))"}, FILTER_FLAG={userselectedvalue}>}MY_ID)

Thanks in advance

Brent

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

I think this is what you are looking for:

Count(TOTAL <PRODUCT> {1<Month={"$(=MonthName(vEmergCur))"}, FILTER_FLAG=P({$} FILTER_FLAG)>}MY_ID)


cheers,

Oleg Troyansky

QlikView Your Business: An expert guide to Business Discovery with QlikView and Qlik Sense

Not applicable
Author

Thank you Oleg. That seemed to work perfectly! I appreciate your quick and accurate response.