Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Need help to rank non numeric data

 I have recently stated working on power bi and I'm struggling with this below mentioned scenario. your help will be appreciated 🙂   I wanted to rank some non character data in power bi using a meas...
  • AllisonKennedy's avatar
    5 years ago
    You can try this as a calculated COLUMN:

    Rank Dax = RANKX(FILTER(ALL('Table'), 'Table'[Product Id] = EARLIER('Table'[Product Id])), 'Table'[type],,ASC)