Forum Discussion

amilkarigi's avatar
amilkarigi
Icon for Helper I rankHelper I
8 years ago

RANKX Issue

Hi there :robotvery-happy:

I need help with this code:

Top Clients = 
VAR
    Prod = [Top product]
VAR
    Client = VALUES(Clients[CompanyName])
RETURN
    CALCULATE([Total Sales];
        FILTER(Client;
            RANKX(ALL(Clients[CompanyName]); Total Sales];;DESC) <= 10); Orders[ProductName] = Prod)

I need to put in a table the companies thtat have bought my Top Product Prod, but the reuslt is not coherent.

what returnsWhat should return
It ruturns 10 clients, when it should only return 6 and the #1 company should be Warp AG no Sunny Ski Store and I don't know how to solve this.

PSD:
Top Product measure

Top Product = FIRSTNONBLANK(TOPN(1; ALL(Products[ProductName]); [ProdV];DESC); 1)

ProdV measure

 

ProdV = 
VAR
    Actual = [ActualSales]
VAR
    Previous = [PreviousSales]
RETURN
    IF(Actual > 0 && Previous = 0; CALCULATE([Total Sales]))

Actual measure is the actual year, Previous is the previous year and Total Sales is just what it says.
ProdV measure's goal is to return me the total sales of products were not sold the previous year but sold in the actual year.