Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
As you know the RANK() function return the RANK in largest value bases. how can i get rank() on lowest base.
ex lowtest get rank 1 and so on
Regards,
JKV
Use this:
Rank(-Sum(Value)) to get reverse order ranking
HTH
Best,
Sunny
Thanks Sunny
No problem
Glad I was able to help.
Best,
Sunny
Hii
Try like this:IF(Aggr(Rank(-SalesValue),Cust_ID)<=5,(SalesValue))
This gives the lowest 5 sales based customers.
Hope this helps.
Thanks