Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Using Agg & rank across a time series (time on dimension axis of a chart)

Hi,

I am building a chart with a rank for each month in the year.

My Dimension is a simple "Month Name".

The below is my expression.

 

=

aggr(rank(sum({<ClientName=}>} Sales))

I want to expand my expression to make my chart run across all the months. However if I amend this expression to produce that result, the expression produces the wrong result..

  

aggr(rank(sum({<ClientName=, MonthName=}>} Sales))

Any ideas how I can make this expression evaluate this for each month?

1 Reply
MayilVahanan

Hi

Try like this

aggr(rank(sum({<ClientName=}>} Sales)),MonthName)

Hope it helps


Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.