Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

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?

1 Solution

Accepted Solutions
sunny_talwar

May be this

Aggr(If(Count(DISTINCT Software) >= 2, Name_Org), Name_Org)

View solution in original post

2 Replies
sunny_talwar

May be this

Aggr(If(Count(DISTINCT Software) >= 2, Name_Org), Name_Org)

Anonymous
Not applicable
Author

great thanks