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 FORCE A RANK function?

I have a table with Client and SalesAmt. I want to have a column that assigns a distinct numerical rank to every client.

When I use the rank function(mode4), I'm still getting the bucketed rank (e.g. 12-15) for those clients with exact same sales. I'd like qlik to force rank the ties to assign distinct rank to each client. Is this possible?

Thanks in advance.

1 Solution

Accepted Solutions
Or
MVP
MVP

Rank(myColumn,0,1) should do the trick. Check the Rank() documentation for specifics.

View solution in original post

2 Replies
Or
MVP
MVP

Rank(myColumn,0,1) should do the trick. Check the Rank() documentation for specifics.

Not applicable
Author

Thank you! This worked great.