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

Count Help

Hi All,

I am having a following fields ,Service Name, Application name . And I need to find out which service having more than 2 Applications.

I have used Count(if(Applicationname)>2,Applicationname)

also

Count({<Applicationame={<'>2'>}>}Applicationname)

Kindly share your thoughts

-Jay

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Create a straight table

Use Service Name as dimension

Use as expression =count({<[Service Name]={'=count([Application name])>2'}>} [Application name])


talk is cheap, supply exceeds demand

View solution in original post

4 Replies
anbu1984
Master III
Master III

If(Aggr(Count([Application name]),[Service Name])>2,Count([Application name]))

Gysbert_Wassenaar

Create a straight table

Use Service Name as dimension

Use as expression =count({<[Service Name]={'=count([Application name])>2'}>} [Application name])


talk is cheap, supply exceeds demand
PrashantSangle

Hi,

Try like,

Count(if(count(Aggr(ApplicationName,ServiceName))>2,ServiceName))

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anonymous
Not applicable
Author

if (aggr(count(AppName),ServiceName)>1,ServiceName)