Forum Discussion

Stemar_Aubert's avatar
Stemar_Aubert
Resolver I
6 years ago
Solved

Exclude items from RANKX evaluation and

Hello,   I am trying to rank the performance of my Districts based on their YoY Growth using RANKX().   Current formula, where Custom is a flag to exclude specific districts: if( ha...
  • Mariusz's avatar
    Mariusz
    6 years ago

    Hi Stemar_Aubert 

     

    Sorry, my bad, FILTER can only accept one-two arguments, try the below instead.

    VAR _search = "OTHER"
    VAR _tbl =
        CALCULATETABLE(
            FILTER(
                ALLSELECTED( Local[DISTRICT] ),
                SEARCH( _search, Local[DISTRICT], 1, 0 ) = 0
            ),
            Local[Custom] = 0
        )
    RETURN
    IF(
        SEARCH( _search, SELECTEDVALUE( Local[DISTRICT] ),  1, 0 ) = 0,
        RANKX( _tbl, [PINS YTD YoY Δ] ) 
    )   

     

    Best Regards,
    Mariusz

    If this post helps, then please consider Accepting it as the solution.

    Please feel free to connect with me.
    Mariusz Repczynski