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
Anonymous
Not applicable

Dynamic TopN filter in Power BI

I have table contain only one column Title. Column values:
Title
Word 1
Word 4
Word 3
Word 1
Word 4
Word 2

How filter above table by dynamic TopN?

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous , Try like

Top 10 = CALCULATE([TotalTitle],TOPN(10,all('Content Catalog Search Result Report'[Title]),[TotalTitle],DESC),VALUES('Content Catalog Search Result Report'[Title]))

 

Here 10 can be variable or what if

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

Anonymous
Not applicable

Thank you @amitchandak . But gives me duplicated Rank value for each duplicated count, see attach image.TopN.pngank v

Hi @Anonymous,

Any rules that you want to rank your field values? If you only want to choose rows based on it row_number, I'd like to suggest you add an index column to your table. Then you can filter on the index field values to show correspond records.

Create Index Columns Using Power Query 
Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
PaulDBrown
Community Champion
Community Champion

@Anonymous 

I'm not too sure what your dataset includes. Is it a single column listing "Word 1", "Word 4", "Word 3" etc as individual values, or do you have 2 columns (one for "Word" and another for a value? If the latter, does that mean that there is a single ID value for "Word"?

To calculate TopN you can use either TopN or RANKX for the measure, depending on what you wish to see. If by "dynamic TopN" you mean you wish to select the TopN using a slicer, you will need to create a independent table listing the rank values you wish to filter by.

Please also provide a depiction of what you wish to see in the visual.

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Anonymous
Not applicable

Yes. I have only single column in table with values  "Word 1", "Word 4", "Word 3", "Word 1" etc. All values are repetitive, so I calculate total count of each Word.
Here I'm using TopN slicer and then use RANKX to rank each words.
When I use rankx it returns 1 in each row.

TotalTitle = COUNT('Content Catalog Search Result Report'[Title])
Rank = RANKX(All('Content Catalog Search Result Report'[Title]),[TotalTitle], ,DESC)

 

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.