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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

List of Slicer values with optional text value

Hi all!

please help with the following,

 

I have a Geo slicer with list of regions, for the sake of this example let's use continets:

  • Asia
  • Africa
  • Europe
  • North America
  • South America
  • Australia/Oceania
  • Antarctica

I created a Dynamic Text Box which returns selected values from a slicer, 
e.g.
if Europe is selected it returns => Europe ,
Ali_Shakh_0-1672054394313.png
if Asia and Europe is selected it returns => Asia and Europe,

Ali_Shakh_1-1672054444641.png


if 3 or more continets are selected it returns => Asia and Europe, etc.

Ali_Shakh_2-1672054480535.png

if all continets are selected (or none is selected) it returns => All.

Ali_Shakh_3-1672054664522.png

 

 

the only thing I can't figure out is how to return "all but one" when one continet is deselected
e.g. => "all but Europe" when all continents except Europe is selected or other scenarios.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,  Try a measure like 

Add other conditions

 

Switch( True() ,

countx(all(Table[Regions]), [Regions]) -1= countx(allselected(Table[Regions]), [Regions]) , "all but" & maxx(except(all(Table[Regions]), allselected(Table[Regions])), [Region]) ,

// add other conditions

)

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous ,  Try a measure like 

Add other conditions

 

Switch( True() ,

countx(all(Table[Regions]), [Regions]) -1= countx(allselected(Table[Regions]), [Regions]) , "all but" & maxx(except(all(Table[Regions]), allselected(Table[Regions])), [Region]) ,

// add other conditions

)

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

hi @amitchandak ,

 

you are indeed a Super User, 

 

all works, increadible, thanks a lot!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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