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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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