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

Ranking issue in qlikview

Hello Friends,

Need your help urgently!!!

I need to sort the values as per attached excel .Rank column marked in yellow color.

Please help me for sorting this number in descending order

NOTE:I need to do this in front end.

4 Replies
Not applicable
Author

I gotthe answer

logic used is rangeavg(rank(column(1)))

Kushal_Chawda

Data:

Load Name,

           [D name],

           [Index for month]

FROM Table;

New:

noconcatenate

LOAD *,

           if([Index for month]=previous([Index for month]),peek('Rank'),rowno()) as Rank

Resident Data

order by [Index for month] desc;


drop table Data;

Chanty4u
MVP
MVP

cool:)

Please close the thread by making correct answer.

Not applicable
Author

i want it in front end expression