Forum Discussion
JPS_SEQ
2 years agoRegular Visitor
Power BI basic doubts
Hi, My database is a excel file with a list of several inputs. One of the columns from that list is called "Name". I 'd like to create a top5 of the name most times inserted in that list. ...
audreygerred
2 years agoSuper User
If I understand correctly, you want the Top5 Names based on how many times the name appears in the list - if that is correct, you can make a measure that will count the rows like, Name Count = COUNTROWS(YourTable) COUNTROWS function (DAX) - DAX | Microsoft Learn
Then, when you do your TopN filter, put the measure you made in the 'By value' section, so it will return you the Top5 Names based on the countrows measure.