Forum Discussion
Anonymous
3 years agoNot applicable
Visual pane filter messes up ranking
I was trying to get the top 3 of my customers using the following measure: Rankingmeasure = IF(NOT ISBLANK([_Measure1]) ,RANKX(ALLSELECTED('Customer Attributes'[Parent_co]), [_Measure1])) An...
amitchandak
Super User
3 years agoAnonymous , Use TOPN
example
CALCULATE([measure],TOPN(5,all(Table[Project]),[Measure],DESC),VALUES(Table[Project]))
Learn Power BI: Dynamic TOPN using TOPN/Window and Numeric parameter: https://youtu.be/vm2mdEioQPQ
Anonymous
3 years agoNot applicable
I know I can use TOPN. I'm trying to troubleshoot to deeper my understanding of DAX.