Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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'
Count({< [Application Name] = {"=count({<[Application Name]=>}DISTINCT [Authenticated user]) >5"} - {"lease license.qvw"} >}DISTINCT [Authenticated user] )
Thanks
AJ
Count({< [Application Name] = {"=count({<[Application Name]=>}DISTINCT [Authenticated user]) >5"} - {"lease license.qvw"} >}DISTINCT [Authenticated user] )
Thanks
AJ
What does this - means " or "
It is a set operator:
The two most common are Union "+" and Exclusion "-".
So in this case "-" exclude from the equation
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
Thanks All