Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
oric1884
Contributor III
Contributor III

I need a Rank by Month/Product

Hi there!

I have the following data serie:

Month  Product Sales

jan/16   Apple        10

jan/16   Orange       5

jan/16   Apple         1

feb/16   Orange       5

feb/16   Apple         2

I need to create the following table:

Month  Product  Month Sales  Rank of Sales

jan/16   Apple          11                       1

jan/16   Orange         5                       2

feb/16    Orange        6                       1

feb/16    Apple          2                       2

I have no idea about how to write the rank of sales formula. Could you please, help me?

Many thanks for any kind of help.

Best ragards,

Ciro

1 Reply
swuehl
MVP
MVP

Create a table chart with 1. dimension Month and 2. dimension Product

and two expressions:

=Sum(Sales)

=Rank(Sum(Sales))

[BTW, why do you get 6 for Oranges in Feb/16?]