Forum Discussion
SENQLDHLTH
3 years agoFrequent Visitor
Rank by Project
Hi All I am struggling to create a measure which deliver the information I need. The idea is to provide a list with a dynamic ranking by project. These projects should be ranked by the amount in eac...
Ashish_Mathur
3 years agoSuper User
Hi,
These measures should work
Total = SUM('Table'[Amount])
Rank = rankx(all('Table'[Project]),[Total])
Hope this helps.