
Anonymous
Not applicable
2018-05-18
01:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to find specific organization names based on >= criteria
Hello I would like to create a master dimension with qlik sense which will display only organizations with 2 or more distinct softwares. Something like if(count(distinct Software)>=2,Name_Org). Is this possible?
- Tags:
- set analysis*
687 Views
1 Solution
Accepted Solutions

MVP
2018-05-18
02:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
Aggr(If(Count(DISTINCT Software) >= 2, Name_Org), Name_Org)
2 Replies

MVP
2018-05-18
02:01 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be this
Aggr(If(Count(DISTINCT Software) >= 2, Name_Org), Name_Org)

Anonymous
Not applicable
2018-05-18
02:11 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
great thanks
635 Views
