Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In given data i want to show top 3 storeid of each businessline with Netamount.
Please help me out.
Regards,
Lalit Kumar
Try using Rank()
see attach
PFA
no attached file found.
no attached file found.
Hi lalit ,
You can use the below condition to get top 3 net values of Businessline.
=if(Rank(aggr(sum(NetValue),BUSINESSLINE))<=3,aggr(Sum(NetValue),BUSINESSLINE))
Please open your thread in new tab u can able to find the attachments
Hi, you need to create a chart, add businessline and storeid as dimension and then use an expression like this:
if(rank(sum(NetValue))<4,sum(NetValue))
Please let me know if this helps.
Kind regards,
Hi,
Check this,
=IF(Rank(Aggr(Sum(NetValue),StoreID,BUSINESSLINE))<4,Sum(NetValue))
HTH,
Hirish