Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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