Forum Discussion

UNICODE's avatar
UNICODE
Helper I
2 years ago
Solved

Ranking with duplicated data

Hello Everyone,   I have one here that has stumped me.    I am trying to get a ranking column for the product data table.  I have a slicer on the report that allows the users to choose the Job Orde...
  • TomMartens's avatar
    TomMartens
    2 years ago

    Hey UNICODE ,

     

    please be aware that I did not use the DAX to create a measure, instead I created a calculated column.
    If you have to create a measure, try this instead:

    Rank (ms) = 
    ROWNUMBER(
        SUMMARIZE(
            ALLSELECTED( 'Table' )
            , 'Table'[J/O]
            ,'Table'[Part]
        )
        , ORDERBY( 'Table'[Part] , ASC )
        , DEFAULT
        , PARTITIONBY( 'Table'[J/O] )
    )

    Next,  recommend updating to the latest version of Power BI Desktop because my assumption is that there will be optimizations for the windowing functions like ROWNUMBER.

     

    Hopefully, this provides what you are looking for.

    Regards,

    Tom