Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Analysis and Condition


Hi All

I have an expression which is counting for only where Application Name has more than 5 users

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

I also would like to use and condition so [Application Name] <> 'lease license.qvw'

1 Solution

Accepted Solutions
Not applicable
Author

Count({<  [Application Name] = {"=count({<[Application Name]=>}DISTINCT [Authenticated user]) >5"} - {"lease license.qvw"}  >}DISTINCT [Authenticated user] )


Thanks

AJ

View solution in original post

5 Replies
Not applicable
Author

Count({<  [Application Name] = {"=count({<[Application Name]=>}DISTINCT [Authenticated user]) >5"} - {"lease license.qvw"}  >}DISTINCT [Authenticated user] )


Thanks

AJ

Not applicable
Author

What does this - means " or " 

Anonymous
Not applicable
Author

It is a set operator:


The two most common are Union "+" and Exclusion "-".


So in this case "-" exclude from the equation

Not applicable
Author

Faisal,

The - (minus) sign indicates that you remove the second set from the first one.

Ajay has created two sets: your 1st one and the second that is removed from the frst one.

+ = Union

- = Exclusion

* = Intersection

Fabrice

Not applicable
Author

Thanks All