Forum Discussion
Top 5 help
Hello,
What I am looking to do is rank the business sponsors in order of who has the most active projects open. I would assume I would have to sum the custom column as it represents the project but not sure of the logic for the top 5. Any suggestions?
Business sponsor custom
A 1
B 1
C 1
B 1
Hi Anonymous
Create whatif parameter,
then create measures
Measure = CALCULATE ( SUM ( 'Table'[custom] ), FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Business sponsor] = MAX ( 'Table'[Business sponsor] ) ) ) Measure 2 = RANKX(ALLSELECTED('Table'),[Measure],,DESC,Dense) Measure 3 = IF([Measure 2]<=[TOP 5 Parameter Value],1,0)Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- amitchandak
Super User
Not very clear based on data you posted. But for rank refer
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
If not resolved we need more data with example. If possible please share a sample pbix file after removing sensitive information.Thanks.
My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin - v-juanli-msft
Community Support
Hi Anonymous
Create whatif parameter,
then create measures
Measure = CALCULATE ( SUM ( 'Table'[custom] ), FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Business sponsor] = MAX ( 'Table'[Business sponsor] ) ) ) Measure 2 = RANKX(ALLSELECTED('Table'),[Measure],,DESC,Dense) Measure 3 = IF([Measure 2]<=[TOP 5 Parameter Value],1,0)Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.