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 Question to ignore selection

I have this expression, but i also would like to ignore [Application Name] selection if user makes from its seleciton box.

trid if condition for count but does not seem to be working.

Count({< [Application Name]=, [Application Name] = {"=count(DISTINCT [Authenticated user]) >5"}>}DISTINCT [Authenticated user] ))

Message was edited by: Faisal Mehmood I have attached examplt,,which does not work

Labels (1)
1 Solution

Accepted Solutions
nilesh_gangurde
Partner - Specialist
Partner - Specialist

Please find attachment

its working.

View solution in original post

13 Replies
nilesh_gangurde
Partner - Specialist
Partner - Specialist

Try This.


Count({< [Application Name]=, [Application Name] = {"=count( {<[Application Name]=>} DISTINCT [Authenticated user]) >5"}>}DISTINCT [Authenticated user] ))


-Nilesh

danieloberbilli
Specialist II
Specialist II

Delete the first modifier : [Application Name]=,
as you dont need this - the last modifier will do the job

Clever_Anjos
Support
Support

You´re setting two conditions to same field.

Which one you want? If only ignore selections

Count(DISTINCT {< [Application Name]=>}[Authenticated user] )

kiranmanoharrode
Creator III
Creator III

Try this............

=Count(DISTINCT {< [Application Name]=>}[Authenticated user] )

Regards
Kiran Rode

+91 8976977897

Not applicable
Author

Hi Nilesh,

should i remove first [Application Name]=, as shown below.

Count({<[Application Name] = {"=count( {<[Application Name]=>} DISTINCT [Authenticated user]) >5"}>}DISTINCT [Authenticated user] ))

Not applicable
Author

I want Authenticated user > 5 and i have selction filed Authneticated user and i dont want tihs to filter my chart

nilesh_gangurde
Partner - Specialist
Partner - Specialist

This will also work. you can remove the first [Application Name]=,

both conditions will Work.

If not then you can se the below expression:

Count({<[Application Name] = {"$(=count( {<[Application Name]=>} DISTINCT [Authenticated user])) >5"}>}DISTINCT[Authenticated user] ))

-Nilesh

Not applicable
Author

try:

if(count(distinct [Authenticated user]) => 5, Count({< [Application Name]=>} [Authenticated user])

Clever_Anjos
Support
Support

Count({<[Application Name] = P({"=count(DISTINCT [Authenticated user]) >5"})>}DISTINCT [Authenticated user] ))