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: 
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

Labels (1)
1 Solution

Accepted Solutions
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

Ask me about Qlik Sense Expert Class!

View solution in original post

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

Ask me about Qlik Sense Expert Class!
Not applicable
Author

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