Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
soloeeeoff
Contributor III
Contributor III

Rank - Mode 0,1,2,3,4

Hi all,

I tried Rank Function's Mode 0,1,2,3,4.

But it seems to be making No difference.

Please any one help me .

1.png

Thanks.

2 Replies
Anil_Babu_Samineni

Try

Hrank(expression, 0)

And same as 1,2,3...

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
sunny_talwar

Try adding a Num() function to see the difference or adding the second parameter

Rank(Sum(Data), 1, 1)

Rank(Sum(Data), 2, 1)

Rank(Sum(Data), 3, 1)

Rank(Sum(Data), 4, 1)


Rank(Sum(Data), 1, 2)

Rank(Sum(Data), 2, 2)

Rank(Sum(Data), 3, 2)

Rank(Sum(Data), 4, 2)


or

Num(Rank(Sum(Data), 1))

Num(Rank(Sum(Data), 2))

Num(Rank(Sum(Data), 3))

Num(Rank(Sum(Data), 4))