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: 
warrenpress
Contributor II
Contributor II

Rank function with multiple dimensions

Hi,

I need a little help with the Rank function.

I have a chart with Dimensions Owner and Store, and Expression Sum (Sales). I would like to add an expression that ranks the stores sales against all stores, NOT just those within the same owner. I have attached the QVW as well as an XL file of what I'm trying to achieve.

Thanks in advance

W

1 Solution

Accepted Solutions
anbu1984
Master III
Master III

=rank(total sum(Sales))

View solution in original post

5 Replies
anbu1984
Master III
Master III

=rank(total sum(Sales))

morganaaron
Specialist
Specialist

Hi Warren,

Just add in the TOTAL qualifier, so your expression would be =rank(TOTAL Sum(Sales)).

Thanks

Not applicable

Add the expression

rank(total sum(Sales))

ashwanin
Specialist
Specialist

Hi

Just Add Total in front of Sum in your expression.

=rank( Total sum(Sales))

warrenpress
Contributor II
Contributor II
Author

Thanks. I knew it had be something simple!