Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
i have a column with a list of names like the one i'm posting, i want to create a measure that rank them by number of time their name appears.
Thank you!
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Rank measure: =
RANKX ( ALL ( Data[Name] ), CALCULATE ( COUNTROWS ( Data ) ),, DESC )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
Please check the below picture and the attached pbix file.
Rank measure: =
RANKX ( ALL ( Data[Name] ), CALCULATE ( COUNTROWS ( Data ) ),, DESC )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
@Astolfo , Try rank measure like
rankx(allselected(Table), calculate(count(Table[Name])),,desc, dense)
plot with name
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
Measure Rank: https://www.youtube.com/watch?v=DZb_6j6WuZ0&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=40
https://www.youtube.com/watch?v=cN8AO3_vmlY&t=25627s