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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
magnifybi
Resolver I
Resolver I

Need dynamic title to not show filter selection when ALL is selected

Hey,

 

I have a dynamic dilter DAX formula that is giving me almost everything I need, however, at the moment it's showing "All" with the slicer name when all is selected.

 

What I want, is when all is selected, not only does it not display "All" but it doesn't show the slicer name that I have put in.

 

Selected Top 20 Products = "Top 20 Products - Category : "&SELECTEDVALUE(ProductCategoryCode[ProductCategory], "All")&" - SubCategory : "&SELECTEDVALUE(ProductCategoryCode[ProductSubCategory], "All")&" - Product : "&SELECTEDVALUE('Product'[ProductDescription], "All")&" - Week End Date : "&MIN(vw_DateDim[Week End Date])&" - "&MAX(vw_DateDim[Week End Date])
1 ACCEPTED SOLUTION
magnifybi
Resolver I
Resolver I

Solve it myself;

 

Selected Top 20 Products = "Top 20 Products "&IF(HASONEVALUE('ProductCategoryCode'[ProductCategory])," - Category : "&SELECTEDVALUE(ProductCategoryCode[ProductCategory], "All"),"")&IF(HASONEVALUE(ProductCategoryCode[ProductSubCategory])," - SubCategory : "&SELECTEDVALUE(ProductCategoryCode[ProductSubCategory], "All"),"")&IF(HASONEVALUE('Product'[ProductDescription])," - Product : "&SELECTEDVALUE('Product'[ProductDescription], "All"),"")&" - Week End Date : "&FORMAT(MIN(vw_DateDim[Week End Date]),"DD-MM-YYYY")&" - "&FORMAT(MAX(vw_DateDim[Week End Date]),"DD-MM-YYYY")

View solution in original post

1 REPLY 1
magnifybi
Resolver I
Resolver I

Solve it myself;

 

Selected Top 20 Products = "Top 20 Products "&IF(HASONEVALUE('ProductCategoryCode'[ProductCategory])," - Category : "&SELECTEDVALUE(ProductCategoryCode[ProductCategory], "All"),"")&IF(HASONEVALUE(ProductCategoryCode[ProductSubCategory])," - SubCategory : "&SELECTEDVALUE(ProductCategoryCode[ProductSubCategory], "All"),"")&IF(HASONEVALUE('Product'[ProductDescription])," - Product : "&SELECTEDVALUE('Product'[ProductDescription], "All"),"")&" - Week End Date : "&FORMAT(MIN(vw_DateDim[Week End Date]),"DD-MM-YYYY")&" - "&FORMAT(MAX(vw_DateDim[Week End Date]),"DD-MM-YYYY")

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.