Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
H_insight
Helper V
Helper V

TopN by Report Name

Hi all, 

 

I am trying to get a simple TopN by report names. The N is a range from 1~5. Based on the frequency of the report name (i.e. count) I would like to show top N by report name.

 

attached sample file and a screenshot of the expected outcome.

 

HeshamK_0-1632400022891.png

 

Sample file.

 

Thanks.

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @H_insight ,

 

You can also try the following formula, refer to the following test:

 

Col_count =
CALCULATE ( COUNTROWS ( Data ), ALLEXCEPT ( Data, Data[Report Name] ) )
Column = 
RANKX (
    Data,
    CALCULATE ( COUNTROWS ( Data ), ALLEXCEPT ( Data, Data[Report Name] ) ),
    [Col_count],
    ,
    DENSE
)

 

Put the measure formula in the filter of the table visual and set the value to not 0:

vhenrykmstf_0-1632735529469.png

vhenrykmstf_1-1632735551349.png

 

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-henryk-mstf
Community Support
Community Support

Hi @H_insight ,

 

You can also try the following formula, refer to the following test:

 

Col_count =
CALCULATE ( COUNTROWS ( Data ), ALLEXCEPT ( Data, Data[Report Name] ) )
Column = 
RANKX (
    Data,
    CALCULATE ( COUNTROWS ( Data ), ALLEXCEPT ( Data, Data[Report Name] ) ),
    [Col_count],
    ,
    DENSE
)

 

Put the measure formula in the filter of the table visual and set the value to not 0:

vhenrykmstf_0-1632735529469.png

vhenrykmstf_1-1632735551349.png

 

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks @v-henryk-mstf. for sharing the solution. This is exactly what I was looking for.

amitchandak
Super User
Super User

@H_insight , measures like

 

report count = count(Table[report Name])

calculate(AverageX(Table,[report count ]),TOPN(5,allselected(Date[report Name]),[report count ],DESC), values(Date[report Name]))

 

 

refer if neeed

https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...

 

in place five you can use what if , if needed

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.