Forum Discussion

SebSchoon1's avatar
SebSchoon1
Icon for Post Patron rankPost Patron
3 years ago
Solved

Rankx Not working at all

Hi guys   I have created a summarized Table   with this formula   Table = SUMMARIZE (             'Tableau Dispatch',             'Base Article'[CODE ARTICLE],             'Base Artic...
  • v-yadongf-msft's avatar
    3 years ago

    Hi SebSchoon1 ,

     

    Please try following DAX:

    Rank = IF('Table'[taille] <> BLANK(),RANKX(FILTER('Table','Table'[taille] <> BLANK()),'Table'[taille],,ASC,Dense))

     

    The result you want:

     

    Best regards,

    Yadong Fang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.