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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
ryand009
Frequent Visitor

Variable TopN in Visual filter

Hello

Is there  way to dynamically change the visual title to include the value of the Visual TopN. In the screenshot the visual title is 'Top 10 Sales by Country.' I need it to read 'Top 5 Sales by country' or what ever the value is in the Show Items.

 

Thaks in Advance

 

 

 

PBI_TopN.PNG

1 ACCEPTED SOLUTION
ahmadibrahimbus
Resolver III
Resolver III

Countcountry = IF(ISFILTERED(table[country]), COUNTROWS(VALUES(table[country])),0)

then build another measure for the title:

  • title="Top"& countcountry & "Sales by Country"
  • hope this is help.

View solution in original post

1 REPLY 1
ahmadibrahimbus
Resolver III
Resolver III

Countcountry = IF(ISFILTERED(table[country]), COUNTROWS(VALUES(table[country])),0)

then build another measure for the title:

  • title="Top"& countcountry & "Sales by Country"
  • hope this is help.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors