Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to get top 5 repetitive values


i have a scenario where i have to get top 5 repetitive complaints of the month

how can i achieve this?

6 Replies
er_mohit
Master II
Master II

Try this way with your data fields

=If(AGGR (rank(sum(Sales)), Customer) <=5 , Customer)

tresesco
MVP
MVP

Try:

If(AGGR (Rank(Count(Sales)), Customer) <=5 , Customer)

Not applicable
Author

but how this expression will find the repetitive values?

tresesco
MVP
MVP

Count() will count the frequency, if you rank on them that means most numbers of times occured sales would be taken into consideration. If any doubt, please sample app.

Not applicable
Author

i have two columns named:complain and month ,i want to get the repetitive compalints of the individual months from jan to dec so how an i achieve this

tresesco
MVP
MVP

Hi Shivali,

may be like attached sample?